Mike Disuza wrote: > For rating I am using "acts_as_a_rateable" plugin which is giving a > rating by using "obj.rating" method. > I know that Sphinx does not do indexing of the method. > > Can anyone have any idea how to solve this?
I'm not familiar with the acts_as_a_rateable plugin, but you probably have 2 options: * find out if the plugin stores the rating in your database somewhere and add that column to your index * if the rating is purely calculated in ruby, you will have to add a model callback that caches the value in your database. I've described this technique a few times on stack overflow, check out [1] -- James Healy <[email protected]> Thu, 05 Aug 2010 16:37:45 +1000 [1] http://stackoverflow.com/questions/3391048/including-rails-activerecord-methods-in-sphinx-searches -- You received this message because you are subscribed to the Google Groups "Thinking Sphinx" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/thinking-sphinx?hl=en.
