I'm trying to get thinking-sphinx working for my project. I'm following this railscast to get it working, but it's not working how it should.

In the railscast, Ryan does @articles = Article.search params[:search] for the index method in the controller. When I do this and replace Article.all with Article.search params[:search] when I reload the page, all of the articles that were rendered before have vanished. I know they still exist because I can go to url/articles/1 and see the first article.

I then thought that by default since nothing is being searched for, it's not rendering anything, but that's not true either, because even when I search for something, nothing shows up either.

I don't know if it's relevent, but all of the information is being put into a table. The table also has prototypes tablekit widget applied to it.

I hope I'm making sense.

Thanks

link|improve this question

50% accept rate
Look in your log, is ThinkingSphinx returning any data on the query? It should say how many records it found, etc. But yes, if there is situations where you would not be searching, it might be better to test if params[:search is defined: @articles = params[:search] ? Article.search(params[:search]) : Article.all – jasonpgignac Aug 15 '10 at 16:55
I got it working for the most part. I'm still working out some kinks, but I think that my problem before was that I wasn't doing the steps in the correct order. – Reti Aug 15 '10 at 21:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.