Re: Implement Lucene web-demo using Tomcat

2002-10-30 Thread saiprasad . y
hi anyone please let me know how to configure lucene files in Tomcat (the procedure like where the files need to pasted in tomcat and what are configuaration need to be set) thankz in Advance Regards Sai Prasad

Lucene and XML

2002-10-30 Thread Rob Outar
Hello all, I did not know there were packages like ISOGEN that used Lucene to build a searchable index based on XML files. From visiting ISOGEN's website it looks like it is a commercial software, are there any open source extensions to Lucene that allow XML indexing and searching?

Re: Lucene and XML

2002-10-30 Thread David Kendig
Rob I found it under the Lucene 'contributions' page on the main web site. Apparently ISOGEN is a commercial company that open sourced their XML extention to Lucene. It seems to be very nice and thought out but I do wonder who maintains the contributed code. Dave Hello all, I

problem with non latin characters

2002-10-30 Thread PERRIN GOURON Olivier
Hello, I am using Lucene to index UTF-16 and UTF-8 files . Those files are trans-encoded to the right format so that they can be indexable with Lucene. The index is searched through with queries made from an UTF-16 file. Everything works fine as long my query file contains latin characters (even

Making capitalization significant

2002-10-30 Thread Michael McDonald
Is there a way to arrange indexing and searching so that when searching for Lucene, the term Lucene would be given more boost than the term lucene, and ideally lucene would have more boost than LUCENE? -- -- Mike McDonald [EMAIL PROTECTED] http://www.kelek.com Web Samurai

Re: Implement Lucene web-demo using Tomcat

2002-10-30 Thread Brian Cuttler
I want to thank the people that helped with the lucene/apache/tomcat config, the answer was to add one additional line to the http.conf in apache. WebAppDeploy luceneweb conn /luceneweb/ - I have one additional question

Re: Lucene Site Updated

2002-10-30 Thread Clemens Marschner
Thanks Peter for the update, for those of you who read the doc on the LARM crawler: I added some new sections, reflecting the changed state of the CVS version of the crawler: - command line options were extended such that a list of URLs can now be transmitted, not only one. - URL normalization

ignoring fileds in score calculation

2002-10-30 Thread Harpreet S Walia
Hi , I have the following quries : 1. Is there a way to ignore certain fields while score calculation ? 2. Does putting extra braces in the query affect the search results /score . i.e is the query india any different from ( (india) ) ? TIA Regards, Harpreet -- To unsubscribe, e-mail:

Deleting fields from a Document

2002-10-30 Thread Kelvin Tan
There is currently no way to delete fields from a Document. I wondered if this was evil, in any way, and looking at the source of Document.java, found no evidence that it is so. Document maintains a linked list of Fields. It would be not be difficult to delete a random Field, albeit a little