We use number of servers with Sphinx as a separated layer to provide the searching. Indexer runs by cron independently to reduce data flow and searching indexing coupling.
With according to requirements we should provide real-time searching (without any delays), so we decided to keep Sphinx result that reindexes every 40 minutes and mix with fresh actual data from ActiveRecord model based on updated_at column, actually not older than 40min. It means we have actual data without using of delta functionality (which adds some kind of coupling).
The questions is how we can merge ThinkingSphinx::Search result and ActiveRecord data to do ordering and paginate through whole data set. Is this doable?
