Can Lucene do this?

2005-09-25 Thread Mag Gam
I have a document called "foo.txt" and it has a LOT of information on, various computer tips, programming code, phone numbers, addresses, etc..etc... The document is set up something like this foo.txt- Phone number for Pizza: 1800-999- To cook rice: Put rice o

Can lucene do this?

2006-05-11 Thread Scott Smith
I'm building an application which has to provide "real-time" searching of emails as they come in. I have a number of search strings that I need to apply against each email as it comes in and then do something with the email based on which search string(s) get a hit. My initial thought was to

Can lucene do this?

2006-05-19 Thread David Ahlschläger
Hi All. Firstly I am new to using Lucene and all its API's. I am trying to evaluate if Lucene can solve the following problem for me. 1. I need to temporarilly index sets of documents on the Fly say 100 at a Time. This seems simple enough - I create a Index either on the File System or in Me

Re: Can Lucene do this?

2005-09-25 Thread Maik Schreiber
Can I use lucene to index this document only, and display blocks of information if I need it? Like if I type in this query, "cook rice" I should get the "To Cook rice:" statement and block... Just break your original document into multiple documents by splitting on empty lines, and add those do

Re: Can Lucene do this?

2005-09-26 Thread Mag Gam
Maik: Thanks for the reply. I was going to go that way, but it involves a lot of work, since my text file is about 3 meg of information. However, I am looking into integrating my data with Derby plus Lucene. TIA! On 9/26/05, Maik Schreiber <[EMAIL PROTECTED]> wrote: > > > Can I use lucene to

Re: Can lucene do this?

2006-05-11 Thread Erik Hatcher
Scott, Have a look at the MemoryIndex (in contrib/memory) - it is perfect for this sort of thing. You'd index each e-mail individually into a MemoryIndex and then run all the queries against it getting a hit or not. Erik On May 11, 2006, at 9:28 PM, Scott Smith wrote: I'm bui

Re: Can lucene do this?

2006-05-11 Thread Chris Hostetter
: Have a look at the MemoryIndex (in contrib/memory) - it is perfect : for this sort of thing. You'd index each e-mail individually into a : MemoryIndex and then run all the queries against it getting a hit or alternately, if the "queries" you need to test each email against are fairly simple (i

Re: Can lucene do this?

2006-05-12 Thread Amir Hosein Jadidi Nejad
Hi, You can add per document to index without indexing all document from scratch ! You have real time transactions in this way. Regard, Scott Smith <[EMAIL PROTECTED]> wrote: I'm building an application which has to provide "real-time" searching of emails as they come in. I have a number o

Re: Can lucene do this?

2006-05-12 Thread Marc Dauncey
a good one. - Original Message From: Amir Hosein Jadidi Nejad <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Friday, 12 May, 2006 10:30:23 AM Subject: Re: Can lucene do this? Hi, You can add per document to index without indexing all document from scratch ! You have real time

RE: Can lucene do this?

2006-05-15 Thread Steve FromMoreover
02:29 To: lucene-user@jakarta.apache.org Subject: Can lucene do this? I'm building an application which has to provide "real-time" searching of emails as they come in. I have a number of search strings that I need to apply against each email as it comes in and then do something w

Re: Can lucene do this? [doc routing vs. standing queries]

2006-05-12 Thread carp
Scott Smith wrote: I'm building an application which has to provide "real-time" searching of emails as they come in. I have a number of search strings that I need to apply against each email as it comes in and then do something with the email based on which search string(s) get a hit. My ini