RE: CorruptIndexException

2007-11-29 Thread Melanie Langlois
2.2 Lucli in the future. Mike "Melanie Langlois" <[EMAIL PROTECTED]> wrote: > Hi, > > > > I use Lucli to optimize my index, when my application was stopped. And > after restarting my application, I could not serahc my in

CorruptIndexException

2007-11-28 Thread Melanie Langlois
Hi, I use Lucli to optimize my index, when my application was stopped. And after restarting my application, I could not serahc my index anymore, I got the following exception : org.apache.lucene.index.CorruptIndexException: Unknown format version: -4 at org.apache.lucene.index.Se

RE: optimization issue

2007-10-17 Thread Melanie Langlois
Ok, I found some of my answers looking more into the code, I can actually print the merging infos settings up the IndexWriter.setInfoStream .. But there is still some stuff I don't get regarding the index optimization process, I'm don't understand where the merging of document is done by default

optimization issue

2007-10-16 Thread Melanie Langlois
Hi, It looks like my index is not really optimized, because in the index directory I can see 28 .cfs files (see below) Basically I see files modified on October 3trhd which are only 3KB, when the last files date is October 15. There is only two big files(_fdm.cfs and _uz1.cfs) of 34 and 29

distinct results

2007-04-10 Thread Melanie Langlois
Hi, I'm indexing documents, and some of them are provided in several languages. Thanks to this mailing list participants, I know that I have two choices to index these multiple instances of documents. Either, I create languages specific field, either I index the translations in different doc

RE: Reverse search

2007-03-27 Thread Melanie Langlois
r > parsed queries array. > 4) Run all queries found in 3) and all those held in your "run always" > list against the MemoryIndex containing your new document > > Hope this helps, > Mark > > > Melanie Langlois wrote: > >> Hi Mark, >>

RE: Reverse search

2007-03-27 Thread Melanie Langlois
doc id to index straight into your parsed queries array. 4) Run all queries found in 3) and all those held in your "run always" list against the MemoryIndex containing your new document Hope this helps, Mark Melanie Langlois wrote: > Hi Mark, > If I follow you, I should list th

RE: Reverse search

2007-03-26 Thread Melanie Langlois
l queries found in 3) and all those held in your "run always" list against the MemoryIndex containing your new document Hope this helps, Mark Melanie Langlois wrote: > Hi Mark, > If I follow you, I should list the key terms in my incoming document, then > select the queries whic

search on multiple fields

2007-03-26 Thread Melanie Langlois
Hi, I'm wondering if lucene would understand such a query: content*:mysearch It's just because I index several translations of my document contents in addition with common fields, and this separation is really usefull when an user specify the language in which he wants to search, but I w

RE: Reverse search

2007-03-24 Thread Melanie Langlois
; To: java-user@lucene.apache.org Sent: Friday, 23 March, 2007 12:54:36 PM Subject: Re: Reverse search 23 mar 2007 kl. 09.57 skrev Melanie Langlois: > Well, I though to use the PerFieldAnalyzerWrapper which contains as > basic the snowballAnalyzer with English stopwords and use > s

RE: Reverse search

2007-03-23 Thread Melanie Langlois
ubject: Re: Reverse search 23 mar 2007 kl. 03.07 skrev Melanie Langlois: > Thanks Karl, the performances graph is really amazing! > I have to say that it would not have think this way around would be > faster, but sounds nice if I can use this, make everything easier > to manage. I

RE: Reverse search

2007-03-22 Thread Melanie Langlois
ssage- From: karl wettin [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 10:35 AM To: java-user@lucene.apache.org Subject: Re: Reverse search 23 mar 2007 kl. 02.12 skrev Melanie Langlois: > I want to manage user subscriptions to specific documents. So I > would like t

Reverse search

2007-03-22 Thread Melanie Langlois
Hello, I want to manage user subscriptions to specific documents. So I would like to store the subscription (query) into the lucene directory, and whenever I receive a new document, I will search all the matching subscriptions to send the documents to all subcribers. For instance if a user s

RE: indexing rss feeds in multiple languages

2007-03-21 Thread Melanie Langlois
r the common data; using PerFieldAnalyzerWrapper at both indexing and search; using FieldSelector at search to retrieve only the relevant field(s) for matched documents. (never done this myself though.) - Doron "Melanie Langlois" <[EMAIL PROTECTED]> wrote on 21/03/2007 23:03:03: >

indexing rss feeds in multiple languages

2007-03-21 Thread Melanie Langlois
Hi, I saw that there are many post on the mailing list about indexing in multiple language, so I will try to not post duplicate question. In my case, I want to index rss feeds, so one feed contains several items in different languages, and some common data for all the items (date, source..).