Full List of Stop Words for Standard Analyzer.

2002-08-01 Thread Suneetha Rao
Hi, I would like to include in my documentation all the stop words . Can somebody tell me where to find the list for the Standard Analyzer ? Thanks in Advance, Suneetha -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Hit Navigation in Lucene?

2002-08-01 Thread Peter Carlson
This clicking to the next highlighted term is all done in javascript, not by the backend system. So if you get permission, you can use their code and look this in with the Lucene Highlight. I'll bet that the highlighting is being done via javascript too so you don't need the lucene highlighting c

RE: Hit Navigation in Lucene?

2002-08-01 Thread Bruce Best (CRO)
To avoid confusion The "Fulcrum" I mentioned in my previous message has nothing whatsoever to do with the Fulcrum services framework that is part of the Apache Jakarta Turbine project. I was talking about what is now known as Hummingbird Fulcrum KnowledgeServer, a commercial search engine.

Hit Navigation in Lucene?

2002-08-01 Thread Bruce Best (CRO)
I am looking at Lucene as the search engine for our office's legal research site. We have been looking at some of the commercial offerings, but Lucene seems to offer most of what we need, and we may end up using it and spending money on paying someone to customize it to our needs. For our purpose

Re: Deleting Problem

2002-08-01 Thread Doug Cutting
Terry Steichen wrote: > fine now. (I thought I read someplace that you didn't have to optimize after > a delete, but if I don't, it doesn't seem to work.) You don't need to optimize after delete for search results to be correct. However IndexReader.docFreq() may be incorrect until you've optim

Re: Deleting Problem

2002-08-01 Thread Terry Steichen
Thanks Ian. You are right. Actually, I did originally create an IndexWriter in my code, but neglected to set the second parameter to 'false'. So when I ran it, the whole index disappeared. So I stopped using it. Got a gotcha no matter which way I goofed. Thanks again - it works fine now. (I

Lucene and Slide

2002-08-01 Thread Anand Krishnan
Has any one had the experience of using both Slide and Lucene (for CM and search capabilities ) . If yes do let me know if you have faced any integration issues . regards Anand -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Deleting Problem

2002-08-01 Thread Ian Lea
http://jakarta.apache.org/lucene/docs/api/org/apache/lucene/index/IndexReader.html says, for delete: "Deletes the document numbered docNum. Once a document is deleted it will not appear in TermDocs or TermPostitions enumerations. Attempts to read its field with the document(int) method will res

Deleting Problem

2002-08-01 Thread Terry Steichen
I'm having difficulty deleting documents from my index. Here's code snippet 1: IndexReader reader = IndexReader.open(index_dir); Term dterm = new Term("pub_date",pub_date); int docs = reader.docFreq(dterm); reader.close(); System.out.println("Found "+docs+" docs matching term