This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I am looking for a an open source tool for java application which can do some of google's search functionality such as fuzzy searching, ranking, etc, but will look into rdbms records (or indexed records from rdbms) and not from a text-based index. Can lucene help me with this?
Thanks in advance guys!
Regards,
Lhorenz
I just cant look, its killing me.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
The index is created by code you write, so if your code looks at database records instead if text files, then that is no problem.
The index itself will always consist of text files, though (unless it is small enough that you can consider keeping it in memory), but that shouldn't be an issue.
Connect to the database using JDBC and use an SQL "SELECT" statement to query the database. Then create one Lucene Document object per row and add it to the index. You will probably want to store the ID column so you can later access the matching items. For other (text) columns it might make more sense to only index (not store) them, as the original data is still available in your database.