Class: Sunspot::DSL::Search
- Inherits:
-
Query
- Object
- Scope
- FieldQuery
- Query
- Sunspot::DSL::Search
- Defined in:
- lib/sunspot/dsl/search.rb
Overview
This top-level DSL class is the context in which the block passed to Sunspot.query. See Sunspot::DSL::Query, Sunspot::DSL::FieldQuery, and Sunspot::DSL::Scope for the full API presented.
Constant Summary
Constants inherited from Scope
Instance Method Summary collapse
-
#data_accessor_for(clazz) ⇒ Object
Retrieve the data accessor used to load instances of the given class out of persistent storage.
-
#initialize(search) ⇒ Search
constructor
:nodoc:.
Methods inherited from Query
Methods inherited from FieldQuery
#facet, #order_by, #order_by_random
Methods inherited from Scope
#all_of, #any_of, #dynamic, #with, #without
Constructor Details
#initialize(search) ⇒ Search
:nodoc:
9 10 11 12 |
# File 'lib/sunspot/dsl/search.rb', line 9 def initialize(search) #:nodoc: @search = search @query = search.query end |
Instance Method Details
#data_accessor_for(clazz) ⇒ Object
25 26 27 |
# File 'lib/sunspot/dsl/search.rb', line 25 def data_accessor_for(clazz) @search.data_accessor_for(clazz) end |