Thinking Sphinx v3中的'index_delta'相当于什么?

时间:2014-06-19 06:16:25

标签: ruby ruby-on-rails-3 delayed-job thinking-sphinx

这个问题与此问题有关:Using Delta Indexes for associations in Thinking Sphinx

我现在面临着同样的困境。我尝试了Pat和Claudio发布的解决方案,但由于我使用的是Thinking Sphinx 3.0.6版本,所以没有运气。

我也使用ts延迟delta gem。

1 个答案:

答案 0 :(得分:1)

这里介绍:https://github.com/pat/thinking-sphinx/issues/780 - 但简短的回答是:

ThinkingSphinx::Deltas::IndexJob.new('product_delta').perform

如果你想在延迟工作中排队,那么以下就是你所追求的:

Delayed::Job.enqueue(
  ThinkingSphinx::Deltas::DelayedDelta::DeltaJob.new('product_delta')
)