Text search options for a Web app? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:51:13Z http://stackoverflow.com/feeds/question/1054157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1054157/text-search-options-for-a-web-app 0 Text search options for a Web app? Ethan 2009-06-28T03:23:37Z 2009-06-28T05:48:33Z <p>I'm going to be implementing a Web app using Rails with MySQL running on a small CentOS VPS. (Small server, limited user base to start out.) It's going to store a lot of text, sort of like a blog. I'd like to offer strong search options -- parens, AND, OR, exact phrase.</p> <p>The other piece of it is that the data is private, so using Google or some other externally-hosted search provider is probably off the table.</p> <p>I have some experience with PostgreSQL's built in full text search capabilities, but for this thing it's going to be MySQL. I've checked out the MySQL docs and I don't think MySQL's full text indexes sound too great.</p> <p>What about just using <code>%LIKE%</code> queries? Is that ever done? If I did that, would it mean the DB engine would have to examine every character in the column for every search? I'm not sure about that.</p> <p>Any thoughts or advice would be appreciated.</p> http://stackoverflow.com/questions/1054157/text-search-options-for-a-web-app/1054167#1054167 3 Answer by Alex Martelli for Text search options for a Web app? Alex Martelli 2009-06-28T03:29:35Z 2009-06-28T03:29:35Z <p>MySQL's full-text search functionality is pretty limited (MyISAM-only, and many other limitations besides) -- but, <a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a> is very strong, <strong>and</strong> it can speak MySQL's own protocol so it can "sit" right between your client and your MySQL server, passing most requests right on but dealing with the full-text ones, if that's how you want to install and use it (there are other options of course!).</p> http://stackoverflow.com/questions/1054157/text-search-options-for-a-web-app/1054253#1054253 0 Answer by Joel Meador for Text search options for a Web app? Joel Meador 2009-06-28T04:44:19Z 2009-06-28T04:44:19Z <p><a href="http://ferret.davebalmain.com/" rel="nofollow">Ferret</a> is a ruby port of Lucene. That site appears to be having issues right now.<br /> You can read a little more over at <a href="http://www.oreillynet.com/onlamp/blog/2005/10/lucene%5Fin%5Fruby%5Fname%5Fferret%5Fthi.html" rel="nofollow">O'Reilly</a>.</p> http://stackoverflow.com/questions/1054157/text-search-options-for-a-web-app/1054343#1054343 4 Answer by jdl for Text search options for a Web app? jdl 2009-06-28T05:48:33Z 2009-06-28T05:48:33Z <p>Some previous discussion on this. I've personally used Ferret in production, Sphinx in almost-production, and Xapian to screw around with. Unless I absolutely required easy result text highlighting, I'd choose Sphinx for a new project today.</p> <p><a href="http://stackoverflow.com/questions/73527/whats-the-best-option-for-searching-in-ruby-on-rails">http://stackoverflow.com/questions/73527/whats-the-best-option-for-searching-in-ruby-on-rails</a></p> <p><a href="http://stackoverflow.com/questions/47656/how-do-i-do-full-text-searching-in-ruby-on-rails">http://stackoverflow.com/questions/47656/how-do-i-do-full-text-searching-in-ruby-on-rails</a></p> <p><a href="http://stackoverflow.com/questions/737275/pros-cons-of-full-text-search-engine-lucene-sphinx-postgresql-full-text-searc">http://stackoverflow.com/questions/737275/pros-cons-of-full-text-search-engine-lucene-sphinx-postgresql-full-text-searc</a></p>