I'm also interested... I've been having to create individual search functions for each aspect of my application... ie. customer search, product search, etc.
getting tired of adding LIKE criteria to every object :) but so far it has worked for me, except finding "t shirt" from "t-shirt" is a bit more complicated and natural language processing is not my area of expertise. I've looked at lucene http://jakarta.apache.org/lucene but it requires everything to be static as far as I can tell, and writing out every page to a static file seems like doubling the database... Jeff Painter On 9 Jan 2003, Eric Emminger wrote: > I'm looking at how to implement a site search function in a Turbine > application. We have content in HTML files on disk and all the data in > the database, and all the content needs to be searched. > > I see a few options. > > 1. Search the files and database separately and combine the results. > 2. Create files from the database content and search all the files. > 3. Store the files in the database and search the database. > > I'd like to hear what others have to say. Your feedback will be greatly > appreciated. > > Eric > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
