Class: ElasticRecord::Relation
- Inherits:
-
Object
- Object
- ElasticRecord::Relation
- Includes:
- Batches, Delegation, FinderMethods, Hits, Merging, SearchMethods
- Defined in:
- lib/elastic_record/relation.rb,
lib/elastic_record/relation/hits.rb,
lib/elastic_record/relation/none.rb,
lib/elastic_record/relation/batches.rb,
lib/elastic_record/relation/merging.rb,
lib/elastic_record/relation/delegation.rb,
lib/elastic_record/relation/value_methods.rb,
lib/elastic_record/relation/finder_methods.rb,
lib/elastic_record/relation/search_methods.rb
Defined Under Namespace
Modules: Batches, Delegation, FinderMethods, Hits, Merging, None, SearchMethods
Constant Summary collapse
- MULTI_VALUE_METHODS =
[:extending, :filter, :order, :aggregation]
- SINGLE_VALUE_METHODS =
[:query, :limit, :offset, :search_options, :search_type, :reverse_order]
Instance Attribute Summary collapse
-
#klass ⇒ Object
readonly
Returns the value of attribute klass.
-
#values ⇒ Object
readonly
Returns the value of attribute values.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #aggregations ⇒ Object
- #count ⇒ Object
- #delete_all ⇒ Object
- #explain(id) ⇒ Object
-
#initialize(klass, values = {}) ⇒ Relation
constructor
A new instance of Relation.
- #initialize_copy(other) ⇒ Object
- #inspect ⇒ Object
- #scoping ⇒ Object
- #to_a ⇒ Object
Methods included from Batches
#build_scroll_enumerator, #find_each, #find_ids_in_batches, #find_in_batches, #reindex
Methods included from Delegation
Methods included from FinderMethods
#all, #find, #find_by, #find_by!, #first, #first!, #last
Methods included from Hits
#search_hits, #search_results, #to_ids
Methods included from Merging
Methods included from SearchMethods
#aggregate, #aggregate!, #as_elastic, #extending, #extending!, #filter, #filter!, #limit, #limit!, #none, #offset, #offset!, #order, #order!, #query, #query!, #reverse_order, #reverse_order!, #search_options, #search_options!, #search_type, #search_type!
Constructor Details
#initialize(klass, values = {}) ⇒ Relation
Returns a new instance of Relation.
16 17 18 19 |
# File 'lib/elastic_record/relation.rb', line 16 def initialize(klass, values = {}) @klass = klass @values = values end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ElasticRecord::Relation::Delegation
Instance Attribute Details
#klass ⇒ Object (readonly)
Returns the value of attribute klass.
14 15 16 |
# File 'lib/elastic_record/relation.rb', line 14 def klass @klass end |
#values ⇒ Object (readonly)
Returns the value of attribute values.
14 15 16 |
# File 'lib/elastic_record/relation.rb', line 14 def values @values end |
Instance Method Details
#==(other) ⇒ Object
50 51 52 |
# File 'lib/elastic_record/relation.rb', line 50 def ==(other) to_a == other end |
#aggregations ⇒ Object
25 26 27 28 29 30 |
# File 'lib/elastic_record/relation.rb', line 25 def aggregations @aggregations ||= begin results = search_results['aggregations'] ElasticRecord::AggregationResponse::Builder.extract(results) end end |
#count ⇒ Object
21 22 23 |
# File 'lib/elastic_record/relation.rb', line 21 def count search_results['hits']['total'] end |
#delete_all ⇒ Object
45 46 47 48 |
# File 'lib/elastic_record/relation.rb', line 45 def delete_all find_ids_in_batches { |ids| klass.delete(ids) } klass.elastic_index.delete_by_query(as_elastic) end |
#explain(id) ⇒ Object
32 33 34 |
# File 'lib/elastic_record/relation.rb', line 32 def explain(id) klass.elastic_index.explain(id, as_elastic) end |
#initialize_copy(other) ⇒ Object
36 37 38 39 |
# File 'lib/elastic_record/relation.rb', line 36 def initialize_copy(other) @values = @values.dup reset end |
#inspect ⇒ Object
54 55 56 |
# File 'lib/elastic_record/relation.rb', line 54 def inspect to_a.inspect end |
#scoping ⇒ Object
58 59 60 61 62 63 |
# File 'lib/elastic_record/relation.rb', line 58 def scoping previous, klass.current_elastic_search = klass.current_elastic_search, self yield ensure klass.current_elastic_search = previous end |
#to_a ⇒ Object
41 42 43 |
# File 'lib/elastic_record/relation.rb', line 41 def to_a @records ||= search_hits.to_records end |