Exception: ThinkingSphinx::StaleIdsException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/thinking_sphinx.rb

Overview

A StaleIdsException is thrown by Collection.instances_from_matches if there are records in Sphinx but not in the database, so the search can be retried.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ids) ⇒ StaleIdsException

Returns a new instance of StaleIdsException.



48
49
50
# File 'lib/thinking_sphinx.rb', line 48

def initialize(ids)
  self.ids = ids
end

Instance Attribute Details

#idsObject

Returns the value of attribute ids.



47
48
49
# File 'lib/thinking_sphinx.rb', line 47

def ids
  @ids
end