Re: TestSpellCheck not working

2007-04-20 Thread raikoe
Hello Dave, i opened an JIRA issue under https://issues.apache.org/jira/browse/LUCENE-865 and included a patch which resolves that issue. It was due to some stale instances of IndexReader and IndexSearcher. Regards, Raiko davep626 wrote: > > Interesting, that does not work for me either. It

Re: TestSpellCheck not working

2007-04-13 Thread raikoe
Hello, i've got the same problem. I found a (non-satisfying) solution: If I change the variable spellindex to an FSDirectory the TestCase is working. e.g. spellindex = FSDirectory.getDirectory("d://spellcheckerindex"); instead of spellindex = new RAMDirectory(); But I do not understand wh