It's not a secret anymore!
The moose likes JDBC and the fly likes Implementing versatile text search Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Implementing versatile text search" Watch "Implementing versatile text search" New topic
Author

Implementing versatile text search

Andrew Edwards
Greenhorn

Joined: May 18, 2004
Posts: 10
Hi,

I have an struts application that lists a large number of products held in a mysql database. Due to the large number of items I need a fairly powerful method of searching for items based on full or partial matches. Each product's detail is represented over a series of fields, i.e general description, specific description, item number etc...

I need to be able to handle users searching for something like '424 foil' where '424' may be a substring of the specific description and 'foil' may be a substring of the general description. Although not neccessary limited to just two fields. I also need to include in the results where maybe only one or two search string words were matched, that is not all of them.

I guess I would need first to parse the search string into its component words but from here on I'm not sure what's an efficient way to handle a search. I suspect some form of concurrent representation of the system product catalogue optimised for text searches would be required.

If anyone has handled something similar or heard of an approach please share

Thanks, Andrew
Loren Rosen
Ranch Hand

Joined: Feb 12, 2003
Posts: 156
You might take a look at Lucene (from Apache http://jakarta.apache.org/lucene/docs/index.html). It uses its own datastore so you'd have to push the string fields into it.
 
 
subject: Implementing versatile text search
 
Similar Threads
3 Features of Java for Internationalization
Center text on an image
NX: Need help for GUI design
a question abou making ceratain commands
My SCEA Part 1Study Notes