Re: Problems with exact matces on non-tokenized fields...

2002-10-01 Thread Otis Gospodnetic
Thanks, it's a FAQ entry now: How do I write my own Analyzer? http://www.jguru.com/faq/view.jsp?EID=1006122 Otis --- Doug Cutting <[EMAIL PROTECTED]> wrote: > karl øie wrote: > > I have a Lucene Document with a field named "element" which is > stored > > and indexed but not tokenized. The val

Re: Multithread searching problem on Linux

2002-10-01 Thread karl øie
Try to run your vm in classic mode "java -classic" to disable the hotspot features... mvh karl øie On tirsdag, okt 1, 2002, at 18:16 Europe/Oslo, Stas Chetvertkov wrote: > Hi All, > > I am building a search engine based on Lucene. Recently I created a > test > simulating multiple users searc

Re: Problems with exact matces on non-tokenized fields...

2002-10-01 Thread karl øie
it works :-) when i see this i understand that the term being parsed by the queryparser is sent trough the analyzer as well... thanks! mvh karl øie On torsdag, sep 26, 2002, at 18:44 Europe/Oslo, Doug Cutting wrote: > karl øie wrote: >> I have a Lucene Document with a field named "element" whi

Re: Multithread searching problem on Linux

2002-10-01 Thread Otis Gospodnetic
Thursday? :) I haven't encountered this with Lucene, but I have seen it with a number of other applications. These are JVM problems. Try IBM's 1.3.1 JVM for Linux, or the recently released JRockit 7.0. Otis --- Stas Chetvertkov <[EMAIL PROTECTED]> wrote: > Hi All, > > I am building a search

Multithread searching problem on Linux

2002-10-01 Thread Stas Chetvertkov
Hi All, I am building a search engine based on Lucene. Recently I created a test simulating multiple users searching in the same index simultaneously and found out that quite often JVM crashes with 'Hotspot Virtual Machine Error : 11'. I couldnot reproduce this bug on Windows box, but observed it

Re: Help for german queries

2002-10-01 Thread Clemens Marschner
there's a "feature" in the German stemmer (I would call it a bug) that treats words ending with "t" differently if they start with a capital or non-capital letter. Are you sure you didn't type "geschäft" and "Geschaeft"? Cause that's supposedly stemmed differently. --Clemens - Original Messa

Help for german queries

2002-10-01 Thread Marc Guillemot
Hi, I've performed some tests with Lucene for german indexation/search but I don't get the results I expected: - Umlaut: search for: - "Geschäft" -> x results - "Geschaeft" -> no result Is there an option in the standard german classes to make the 2 searches above equivalent? - Composed