Class: ElasticRecord::Relation

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Batches

#build_scroll_enumerator, #find_each, #find_ids_in_batches, #find_in_batches, #reindex

Methods included from Delegation

#include?, #to_ary

Methods included from FinderMethods

#all, #find, #find_by, #find_by!, #first, #first!, #last

Methods included from Hits

#load_from_hit, #load_hits, #map_hits_to_ids, #search_hits, #search_results, #to_ids

Methods included from Merging

#merge, #merge!

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

#klassObject (readonly)

Returns the value of attribute klass.



14
15
16
# File 'lib/elastic_record/relation.rb', line 14

def klass
  @klass
end

#valuesObject (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

#aggregationsObject



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

#countObject



21
22
23
# File 'lib/elastic_record/relation.rb', line 21

def count
  search_results['hits']['total']
end

#delete_allObject



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

#inspectObject



54
55
56
# File 'lib/elastic_record/relation.rb', line 54

def inspect
  to_a.inspect
end

#scopingObject



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_aObject



41
42
43
# File 'lib/elastic_record/relation.rb', line 41

def to_a
  @records ||= load_hits(search_hits)
end