思考Sphinx搜索返回(对象不支持#inspect)

时间:2013-05-01 15:31:01

标签: ruby-on-rails-3 indexing full-text-search sphinx thinking-sphinx

我有狮身人面像和思考狮身人面像(3.0.2)安装在山狮上为我的rails 3应用程序,一切似乎在安装过程中正常运行。我最终的计划是使用sphinx的geodist功能,但目前我只是希望确保一切正常。

在我的模型中 - story.rb,我有一个名为title的列,它是字符串类型。因此,我在app / indices中创建了一个文件story_index.rb,其中包含:

ThinkingSphinx::Index.define :story, :with => :active_record do
  indexes title
end

我的rake ts:rebuild生成以下内容:

Stopped searchd daemon (pid: 3185).
Generating configuration to /Users/kevin/Desktop/Development/grumpy/config/development.sphinx.conf
Sphinx 2.0.9-release (r3832)
Copyright (c) 2001-2013, Andrew Aksyonoff
Copyright (c) 2008-2013, Sphinx Technologies Inc (http://sphinxsearch.com)

using config file '/Users/kevin/Desktop/Development/grumpy/config/development.sphinx.conf'...
indexing index 'story_core'...
collected 2 docs, 0.0 MB
sorted 0.0 Mhits, 100.0% done
total 2 docs, 36 bytes
total 0.016 sec, 2189 bytes/sec, 121.63 docs/sec
total 3 reads, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
total 9 writes, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
Started searchd successfully (pid: 3222).

似乎很好。但是,当我启动rails控制台并尝试:

1.9.3-p327 :001 > Story.search "dinosaur"
(Object doesn't support #inspect)
 =>  

与数据库的连接很好,有一些记录符合搜索条件。任何想法或解决方案将不胜感激。 :)

**更新了GemFile **

gem 'jquery-rails', '2.0.2'

gem 'bootstrap-sass', '2.0.0'

gem 'devise', '2.1.2'

gem 'gon', '3.0.5'

gem 'resque', :require => 'resque/server'
gem 'resque-scheduler', :require => 'resque_scheduler'

gem 'thinking-sphinx', '3.0.2'

gem 'kaminari', '0.14.1'

2 个答案:

答案 0 :(得分:4)

正如评论中所讨论的,问题是使用旧版本的mysql2 gem(Thinking Sphinx v3用于连接到Sphinx)。最低要求是0.3.12b4。

(对于那些对它未被列为TS gem依赖项的人感兴趣,这是因为mysql2不适用于JRuby)。

答案 1 :(得分:2)

thinking-sphinx github页面上,它声明用brew install sphinx --mysql安装sphinx。这解决了我的问题,但在我使用postgres时打破了我的索引。我的解决方案是brew install sphinx --mysql --pgsql这允许我进行索引和搜索。