Re: Search clustering question

2005-11-23 Thread Dawid Weiss
Does anyone have examples of using Carrot2? I've been looking into it lately and am not finding good documentation. Carrot2 is a programming framework. Its demos are meant to showcase the technology, but you need to delve into the code to actually build something of your own. The manual t

Re: Searching Textile Documents

2005-11-23 Thread Erik Hatcher
On 23 Nov 2005, at 18:37, Alan Chandler wrote: My home page wants to have a summary of perhaps the most recent five blogs entries. Personifying your home page... cute :) It looks as though I can use the Datefield class to store the publication date in an orderable form - so that I can eff

Re: Searching Textile Documents

2005-11-23 Thread Alan Chandler
On Wednesday 23 Nov 2005 22:50, Erik Hatcher wrote: > Well, the smiley is because my own frankenstein blog is a servlet, > some very simple abstraction layers, velocity templates, and > Lucene... http://www.blogscene.org/erik - though I'm a very > infrequent blogger. The categories are picked up

Re: Searching Textile Documents

2005-11-23 Thread Erik Hatcher
On 23 Nov 2005, at 15:56, Alan Chandler wrote: 1) The Analyser First you'll have to spell it the US English way :) You mean yet another corruption of my language:-) I am still having trouble with color rather than colour in all my css files. Well, you're free to spell it anyway you like

Re: Searching Textile Documents

2005-11-23 Thread Alan Chandler
On Wednesday 23 Nov 2005 20:30, Erik Hatcher wrote: > On 23 Nov 2005, at 14:30, Alan Chandler wrote: > > 1) The Analyser > > First you'll have to spell it the US English way :) You mean yet another corruption of my language:-) I am still having trouble with color rather than colour in all my css

RE: Search clustering question

2005-11-23 Thread Runde, Kevin
Does anyone have examples of using Carrot2? I've been looking into it lately and am not finding good documentation. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 2:23 PM To: java-user@lucene.apache.org Subject: Re: Search clusteri

Re: Searching Textile Documents

2005-11-23 Thread Erik Hatcher
On 23 Nov 2005, at 14:30, Alan Chandler wrote: 1) The Analyser First you'll have to spell it the US English way :) Since the body has some special syntax, I assume I have to extend the analyser to skip the special symbols etc. Has anyone done this already? Is there a standard place to l

Re: Search clustering question

2005-11-23 Thread msftblows
Have you looked into using Carrot2 (it is on sourceforge...) -Original Message- From: Supreet Sethi <[EMAIL PROTECTED]> To: Java lucene list Sent: Wed, 23 Nov 2005 17:34:22 +0530 Subject: Search clustering question Hi, For final finish up on work for my project. We intend to do searc

Re: Searching Textile Documents

2005-11-23 Thread John Powers
The short answer is there is a great "highlighter" example in the Lucene In Action book. It sounds like you may just want to use that really. What with the snippets and html. On 11/23/05 1:30 PM, "Alan Chandler" <[EMAIL PROTECTED]> wrote: > I am a brand new newbie with respect to Lucene, and

Searching Textile Documents

2005-11-23 Thread Alan Chandler
I am a brand new newbie with respect to Lucene, and I am just figuring out how to include it into an application I am building. (personal blog) In essence I have a set of articles that reside in a database. Each one will have an Integer ID identifying it, Textual Title, some key parameters (suc

Re: Strange tokenization with StandardFilter

2005-11-23 Thread yahootintin . 11533894
Yes, this is a repeat... I mailed this a few days before and it never made it to the list so I reposted. Now it suddenly appears... weird! --- java-user@lucene.apache.org wrote: > On 21 Nov 2005, at 18:54, [EMAIL PROTECTED] wrote: > > > I'm using a StandardFilter and seeing some strange tokeni

Re: there are more terms than documents in field

2005-11-23 Thread dblanch
I think you are doing it right. Fields used for sorting must be Keyword type. See you are not adding the Field more than once for the same Document. -"Taylor, BE \(Beverley\)" <[EMAIL PROTECTED]> escribió: - Para: De: "Taylor, BE \(Beverley\)" <[EMAIL PROTECTED]> Fecha: 23/11/2005

there are more terms than documents in field

2005-11-23 Thread Taylor, BE \(Beverley\)
Hi Everyone, I am very new to Lucene and am trying to perform a sort on a field containing strings. I get the error message: there are more terms than documents in field I have read through the same problem in the user group archives and the replies usually ask the person if they are trying to

Search clustering question

2005-11-23 Thread Supreet Sethi
Hi, For final finish up on work for my project. We intend to do search clustering. Now I have already read that there is no clear cut way of doing that in lucene. Wondering, if anyone has tackled this problem with time constraint as one issue. With turn around time of 3 sec clustering 5000 searc

Re: Strange tokenization with StandardFilter

2005-11-23 Thread Erik Hatcher
On 21 Nov 2005, at 18:54, [EMAIL PROTECTED] wrote: I'm using a StandardFilter and seeing some strange tokenization. Here's the input: apache.org hosts lucene at apache.org. Here's the tokens it outputs: apache.org hosts lucene at apacheorg Is this a bug that apache.org and apache.org. d

Re: Search Struts

2005-11-23 Thread dblanch
I'm not sure I've understand you. If you want to point to tiles definitions you have to define tem in s or a s element in struts-config.xml, as usual. If you want your app to dinamicaly create tiles definitions you'll have to write a Tiles Controller. See http://www.lifl.fr/~dumoulin/tiles/

Re: Nobody had this problem ?

2005-11-23 Thread Daniel Naber
On Mittwoch 23 November 2005 09:03, Daniel Cortes wrote: > -Now I obtain frequently the message no tvx file. What can I do? You can savely ignore that message. Regards Daniel -- http://www.danielnaber.de - To unsubscribe, e-

Nobody had this problem ?

2005-11-23 Thread Daniel Cortes
Few days ago I write this question: -Hello, my index works fine but now I activated the last parameter to add function of indexwriter. -IndexWriter.add(Field.UnStored("CONTENTS",content,true)); -Now I obtain frequently the message no tvx file. What can I do? -thks for any replies. nobody replies

Strange tokenization with StandardFilter

2005-11-23 Thread yahootintin . 11533894
I'm using a StandardFilter and seeing some strange tokenization. Here's the input: apache.org hosts lucene at apache.org. Here's the tokens it outputs: apache.org hosts lucene at apacheorg Is this a bug that apache.org and apache.org. don't convert to the same token? -