documentation on Lucene

2002-04-03 Thread Suhas Indra
Hello folks, I am new to Lucene search engine. I have read about the power of Lucene in indexing and search. I just browsed through the site http://jakarta.apache.org/lucene to find about the documentation on Lucene classes. But I was unable to find the required information(about the abstract

storing index in third party database.

2002-04-03 Thread amithnz
Hi all I want to index the datas which I already stored in a thirdparty database table and develop a search facility using lucene. I am thinking of storing this indexes back to the database in another table. I know for this we have to create a 'directory' which do all the indexing operations,

Re: compiling lucene

2002-04-03 Thread Otis Gospodnetic
JavaCC 2.1 works, too. This is how I have it set up: [otis@linux2 otis]$ ls -al /usr/local/.version/javacc2.1/ total 44 drwxrwxr-x6 otis otis 4096 Jan 28 06:50 . drwxr-xr-x 20 otis otis 4096 Apr 2 23:32 .. drwxrwxr-x3 otis otis 4096 Jan 28 06:50 bin

Re: storing index in third party database.

2002-04-03 Thread Otis Gospodnetic
If you want to store indices in a database search the mailing list archives for SqlDirectory. Once I considered using it for one application at work, so I asked its author about performance. The answer was that it doesn't perform all that well when the index grows, if I recall correctly.

Re: storing index in third party database.

2002-04-03 Thread Karl Øie
without having investigated the problem much i would think that a SQL database would be a very bad match for lucene as most of lucene's working is creating key's for words and documents and then creating indexes of these keys. for these purposes a SQL database is an unecessary overhead, not

RE: Case Sensitivity

2002-04-03 Thread Aruna Raghavan
Hi, I am using StandardAnalyzer - the problem was with wildcard queries being case sensitive. Even with Standard Analyzer, you have to worry about case sensitivity in this case. Thanks for the tip on example Analyzer, I will take a peek. -Original Message- From: Joshua O'Madadhain

Re: Case Sensitivity

2002-04-03 Thread Peter Carlson
You can use the standard analyzer. This lower cases all the words (it uses the lowerCaseFilter). Note this also uses the stop word filter so your results may vary. Also when you index, be sure to use text instead of keyword as the field type since the keyword doesn't go through the filter.

Objects as search results

2002-04-03 Thread Kelvin Tan
Here's a topic which to my recollection (surprisingly) hasn't been brought up: Assuming development in an object-oriented environment, it's a fair assumption that the eventual target of searching is an object. How are developers making this happen? Are all fields of the objects indexed and

Querying multiple fields of a index

2002-04-03 Thread Harpreet S Walia
Hi, Is it possible to query multiple fields of a given index and get the result based on this combined query. i.e for example if i want to serach for a word lucene in the title field and the word engine in the summary filed and want the results based on these words . How can i achieve this ?

Re: compiling lucene

2002-04-03 Thread Victor Hadianto
JavaCC 2.1 works, too. This is how I have it set up: Yes, to confirm, a list member pointed out earlier that I have to _install_ JavaCC first, serve me right not redaing tfm. Sorry for the noise -- Victor Hadianto --- Every cloud engenders not a storm. -- William Shakespeare,