Re: Lucene Search Taglib

2004-03-06 Thread Iskandar Salim
Hi Erik, Sure, I'd like to donate it to the sandbox, if it's alright. I'll update the files to reflect the ASL 2.0 license. Regards Iskandar - Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Sunday, March 07, 2004 11:18 AM Su

Re: Lucene Search Taglib

2004-03-06 Thread Erik Hatcher
I, too, gave up on the sandbox taglib. I apologize for even committing it without giving it more of a workout. I gave a good effort to fix it up a couple of months ago, but there was more work to do than I was willing to put in. I have not heard from the original contributor, and I specifical

Lucene Search Taglib

2004-03-06 Thread Iskandar Salim
Hi, I've written a taglib for querying lucene indices and have uploaded the taglib at http://blog.javaxp.net/files/lucene-taglib.zip for anyone wanting to check it out. It's a hefty 903kb as it includes the Lucene libraries and a sample index :P . There's a demo at http://www.javaxp.net/lucene-tag

Re: using lucene to search in a 1 huge file. (aka "grep -n")

2004-03-06 Thread Erik Hatcher
On Mar 6, 2004, at 1:17 AM, prasen wrote: Any tutorial/samples on how to use indices, and use them in your search ? Sure, tons. See the articles/resources section of the Lucene website. Otis has written several. I've written a few articles at java.net on Lucene. And there are a handful of ot

Re: Problem with search results

2004-03-06 Thread Morus Walter
Doug Cutting writes: > Morus Walter wrote: > > Now I think this can be fixed in the query parser alone by simply allowing > > '-' within words. > > That is change > > <#_TERM_CHAR: ( <_TERM_START_CHAR> | <_ESCAPED_CHAR> ) > > > to > > <#_TERM_CHAR: ( <_TERM_START_CHAR> | <_ESCAPED_CHAR> | "-" ) > >