Re: JVM Crash org.apache.lucene.store.DataInput.readVInt()I

2011-11-22 Thread Roberto Fonti
closed indexes. > > Uwe > > - > Uwe Schindler > H.-H.-Meier-Allee 63, D-28213 Bremen > http://www.thetaphi.de > eMail: u...@thetaphi.de > > >> -Original Message- >> From: Roberto Fonti [mailto:roberto.fo...@gmail.com] >> Sent: Tuesday, Nove

JVM Crash org.apache.lucene.store.DataInput.readVInt()I

2011-11-22 Thread Roberto Fonti
My JVM (1.6.0_29) keeps crashing on intensive use when indexing documents with Lucene. I get: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x2b6b196d767c, pid=26417, tid=1183217984 # # JRE version: 6.0_29-b11 # Java VM: Java HotSpot(TM) 64-Bit

Re: UN_TOKENIZED and StandardAnalyzer

2007-04-06 Thread Roberto Fonti
pass both words as a single token rather than two tokens. This has been a source of some confusion on the list, there is a very long thread you'll find if you search the archives for KeywordAnalyzer. Best Erick On 4/6/07, Roberto Fonti <[EMAIL PROTECTED]> wrote: Hi All, I'm in

UN_TOKENIZED and StandardAnalyzer

2007-04-06 Thread Roberto Fonti
Hi All, I'm indexing categories with this code: for (Category category : item.getCategories()) { lucene_doc.add(new Field( "CATEGORY", category.getName(), Field.Store.NO, Field.Index.UN_TOKENIZED)); } And searching using the query: Str