I have a RoR app with Posgresql as database. I'm trying to setup search functionality by using Sphinx as search engine and Thinking Sphinx gem. I've installed sphinx with mysql and postgresql support, thinking sphinx v3 gem and it's dependencies.
The command
rake ts:index
performs without errors. Log says that I have 20 docs indexed (all my records of Post model). Then I've tried to create controller and view for search results page. Here's the Controller's search action
def search
@query = Riddle::Query.escape(params[:q])
@posts = Post.search(@query)
end
And when I try to use @posts variable in search view
localhost:3000/search?q=hello
I have following error.
ThinkingSphinx::ConnectionError in Main#search
Error connecting to Sphinx via the MySQL protocol. Error connecting to Sphinx via the MySQL protocol. Can't connect to MySQL server on '127.0.0.1' (61) - SELECT * FROM
post_core
WHERE MATCH('hello') ANDsphinx_deleted
= 0 LIMIT 0, 20; SHOW META
Thinking Sphinx uses mysql for its internal purposes and you have to add
mysql2
gem to your stack, e.g: