> When I run rake ts:config; rake ts:in it generates files in db/sphinx/ > production like this: history_core.new.sph, rather than > history_core.sph. > Could this be the source of my issue?
I think sphinx generates .new.sph files when the indexer is passed the --rotate option. It builds the new indexes alongside the old ones, then once it's done it sends a signal to the running daemon to start using the new ones. Running rake ts:index uses the rotate option if it thinks the daemon is running. You could try stopping your sphinx daemon before indexing to make it just over-write the old files instead of rotate them, see if that helps. You shouldn't *need* to stop the daemon normally, but it might help narrow down what's going wrong. -- James Healy <jimmy-at-deefa-dot-com> Mon, 23 Mar 2009 19:35:13 +1100 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Thinking Sphinx" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/thinking-sphinx?hl=en -~----------~----~----~----~------~----~------~--~---
