I have couchdb. Sunspot was correctly indexing everything. But the Solr server crashed. I need to reindex the whole thing. rake sunspot:reindex wont work as it is tigthly coupled with active record. sunspot.index(model.all) didnt work. the solr core says 0 indexed docs even after doing that. is there a way out?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Post.solr_reindex There are a number of options that can be passed to solr_reindex. The same options as to index; from the documentation index in batches of 50, commit after each
index all rows at once, then commit
index in batches of 50, commit when all batches complete
include the associated +author+ object when loading to index
|
|||
|
|
What I was looking for was this: Post.index!(Model.all) There was something bad happening when I tried to index assuming that batch commits would happen automatically. Any way this worked totally fine for me. |
|||
|
|