这个问题与此问题有关:Using Delta Indexes for associations in Thinking Sphinx
我现在面临着同样的困境。我尝试了Pat和Claudio发布的解决方案,但由于我使用的是Thinking Sphinx 3.0.6版本,所以没有运气。
我也使用ts延迟delta gem。
答案 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')
)