Web search functionality

2010-12-09 Thread Henrique Boregio
I want to add search functionality to my site (think of a classifieds site, something like craigslist where users post items to sell). Currently I am using mysql for storage, and nothing else. Is searching directly at the database via queries the best way? It seems illogical to perform a linear se

Re: Web search functionality

2010-12-09 Thread Steve Coughlan
grate with Lucene if you have a look at the Hibernate Search project. --- On Fri, 10/12/10, Henrique Boregio wrote: > From: Henrique Boregio > Subject: Web search functionality > To: users@wicket.apache.org > Received: Friday, 10 December, 2010, 11:02 AM > I want to add search f

Re: Web search functionality

2010-12-09 Thread James Carman
t of > time implementing have a look at the Apache Lucene library. > > If you're using Hibernate there's a neat way to integrate with Lucene if you > have a look at the Hibernate Search project. > > --- On Fri, 10/12/10, Henrique Boregio wrote: > >> From: Henri

Re: Web search functionality

2010-12-09 Thread Peter Karich
Check out the open source project jetwick where I am using Solr + Wicket: https://github.com/karussell/Jetwick (or at jetwick.com the video intro) "sql like" is definitely not recommended for a large number of items. Feel free to ask further questions ;-) Regards, Peter. I want to add search