views:

12

answers:

0

I have a model which deploys a delayed job that updates some of its attributes. The model is declared "searchable"...

searchable do text :content, :stored => true
end

... which I thought would re-index after a save. On testing, this doesn't seem to be the case. If I run: rake sunspot:reindex, then everything works as expected. What could be causing this issue?