Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need an indexing and searching gem like Sphinx but without needing Rails Any suggestions ? It has to run under Ruby 1.9.3 on a windows box. Tried Sphinx without rails but it needs MySql and a lot of configuration, diddn't succeed. Can you recommend something that uses a build in db or feature like Sqlite ?

share|improve this question

3 Answers

up vote 1 down vote accepted

While certain plugins (like thinking_sphinx) are Rails-specific, Sphinx itself is just a search server, and you can use the client gem directly to index and search whatever you want; it need not be in ActiveRecord (which, incidentally, you could also use outside of Rails if you wished).

Another alternative is Apache Solr, which provides similar functionality to Sphinx, including a sophisticated search system (supporting stemming and lots of other nice things).

share|improve this answer
Hi, thanks for the quick response. I allready tried solr but could not get it to work with windows/ruby193. Do you have a hello world-like sample of using sphinx withour rails ? – peter Apr 23 '12 at 15:28
You'd probably want to use the Riddle gem, which is what thinking-sphinx uses on the backend: freelancing-god.github.com/riddle/getting_started.html . Unfortunately, it doesn't seem to have a lot of introductory documentation available, and I haven't used it enough to be able to help with that; sorry. – Jeremy Roman Apr 23 '12 at 15:37
i tried to use sphinx but have no MySql installed, tried it with odbc text-driver but no success, get errors when i start the indexer. Something that uses Sqlite would be great. I'l edit the question. I'll upvote you for your answer, thanks – peter Apr 23 '12 at 16:04
Peter, you should try xmlpipe in Sphinx. – Paul Selitskas Apr 25 '12 at 8:48

Although Sphinx itself works regardless of whether you use Rails or not, if you're having difficulties with it, you can always try something like Solr or Elastic Search. I heard good things about the latter and it is quite trivial to get to run on Windows, as you seem to be.

share|improve this answer

Another alternative for sphinx,solr is OpenSearchServer . A search engine based on lucene. And it has a good windows support. Have a look at the documentation here how to install in windows.You can use the API to integrate in Ruby.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.