Ignore Words

2003-01-21 Thread Heinz Bruhin
How can I show the words, which are ignored? Example: String searchString = "This is a Question" The Ignored Words are: "is" and "a" -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: how to join 2 queries togther

2003-01-21 Thread alex
Thank you everyone for your help - Original Message - From: "Lichtner, Guglielmo" <[EMAIL PROTECTED]> To: "'Lucene Users List'" <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 9:52 PM Subject: RE: how to join 2 queries togther > > From this code I think I see a possible problem. > >

Lucene Turbine Service

2003-01-21 Thread Seth Weiner
Hi, I'm fairly new to Lucene and am trying to create a 'simple' Turbine webapp that will use Lucene for some indexing. Has anyone written a simple Turbine/Fulcrum Lucene service for searching and indexing documents? Thanks, Seth Weiner -- To unsubscribe, e-mail: Fo

Re: Lucene Turbine Service

2003-01-21 Thread Kelvin Tan
Yep. Look in Lucene Sandbox. Interesting you should ask, though, because after about a year of using the LuceneSearchService, I've recently refactored it out into a subsystem of its own...:-) Regards, Kelvin The book giving manifesto - http://how.to/sharethisbook On Tue, 21 Jan 20

RE: Lucene Turbine Service

2003-01-21 Thread Seth Weiner
Thanks for the pointer! Might I ask what the motivation for the refactoring was? On a separate note I just took a look at the service in the sandbox. It doesn't appear to support addition of documents to the index. Shouldn't be hard to add, just seems like a strange ommision. Also, wouldn't it

Re: how to join 2 queries togther

2003-01-21 Thread Charles
Hi everyone, First of all I'd like to thank you guys for developing a great search engine framework. I've tested it out and it works flawlessly (and really fast too). Right now I plan to create a more advance search capability. I understand how to construct the Query object using the QueryParser,

Range queries

2003-01-21 Thread Tatu Saloranta
My apologies if this is a FAQ (which is possible as I am new to Lucene, however, I tried checking the web page for the answer). I read through the "Query syntax" web page first, and then checked the matching query classes. It seems like query syntax page is missing some details; the one I was w

Re: how to join 2 queries togther

2003-01-21 Thread Otis Gospodnetic
It should all be pretty clear from the API javadocs. Take a look at BooleanQuery, which is that single query that you can add other queries. Good luck. Otis --- Charles <[EMAIL PROTECTED]> wrote: > Hi everyone, > > First of all I'd like to thank you guys for developing a great search > engine