铁轨 +思维-Sphinx多态关联
class User < ActiveRecord::Base has_many :followings, :as => :followable, :dependent => :destroy, :class_name => 'Follow' has_many :…
铁轨 + Thinking-Sphinx 结果 ids
嘿。我使用Rails 3.0.1 和thinking-sphinx。 如何从 sphinx 请求中获取 ID 列表?如果我这样做, MyModel.search('boby').map(&:id) 它会向数据库…
如何使用 RSpec 测试 ThinkingSphinx
我在模型中有一个类方法,它调用 Thinking_sphinx 的 search() 方法。我需要检查这个类方法。 我想在我的 rspec 测试用例中启动、索引或停止 sphinx。…
使用 Sphinx 搜索 $word (Thinking Sphinx)
我想在文本中搜索以 $ 为前缀的单词。 示例记录(包含 3 行的表): This is my string containing the $word special word. Again $word is here. My…
思考Sphinx应用程序范围的搜索:按仅存在于某些模型中的属性进行过滤
我想搜索多个模型并按某些模型具有而某些模型没有的特定属性进行过滤。我希望具有该属性的模型被过滤,但没有该属性的模型则忽略它。 目前只有具有该…
认为 Sphinx Rake 已中止,searchd 正在重建或启动/停止 ts 时运行。索引工作正常
当我调用 rake ts:rebuild RAILS_ENV=Production 时,我得到以下信息: (in /var/www/abc.com/public/abc/releases/20101008073517) ** Erubis 2.6.6 …
使用 Thinking Sphinx 时,Delta 索引无法在服务器上运行
我在 Rails 项目中对 Thinking Sphinx 索引使用增量索引。在我的机器(Mac OS X)上它工作正常。我更改一条记录,它立即找到它。在服务器(Debian)上…
使用两个类和预加载思考 Sphinx 搜索
我使用 TS 同时搜索 2 个模型(类): class Product < ActiveRecord::Base belongs_to :user belongs_to :photo has_many :variants end class Art…
思考Sphinx组合:与参数
我想知道如何组合 Thinking Sphinx 的结果集 我有以下查询: Model.search :with => {:attribute_1 => id} 我想与之组合: Model.search :with =&…
(思考)sphinx Extended2模式下如何进行属性匹配?
我有这个表达式,它在 Thinking Sphinx 中按预期工作: Customer.search :with => {:signer_id => 23} 但我需要编写一个带有某些属性的 OR 的表达…
will_paginate ajax 分页与思考 sphinx
有没有人尝试过通过ajax对思考的狮身人面像结果集进行分页? 我在我的控制器操作中有这个: @results = Model.search params[:query], :page => par…
如何在 Rails 应用程序中运行 rake 任务
我想要做什么: 在 model.rb 中,在 after_commit 中,我想运行 rake 任务 ts:reindex ts:reindex 通常与 rake ts:index 一起运行…
Thinking-Sphinx 不索引任何内容
我的环境: Mac OSX 10.6 Snow Leopard Ruby 1.9.2p0 Rails 3.0.0 thinking-sphinx (2.0.0.rc1) Sphinx 0.9.9-release (r2117) 到目前为止,我还没有…
通配符数字搜索思维狮身人面像
任何人都可以指导如何在思考狮身人面像时使用通配符搜索数字... 我已经尝试过,使用的 User.search "12", :star => true 结果只有 12 但我需要显示…