Module: Mongoid::Contextual::Aggregable::Memory
- Included in:
- Memory
- Defined in:
- lib/mongoid/contextual/aggregable/memory.rb
Overview
Contains behavior for aggregating values in memory.
Instance Method Summary collapse
-
#aggregates(field) ⇒ Hash
Get all the aggregate values for the provided field.
-
#avg(field) ⇒ Float
Get the average value of the provided field.
-
#max(field = nil) ⇒ Float, Document
Get the max value of the provided field.
-
#min(field = nil) ⇒ Float, Document
Get the min value of the provided field.
-
#sum(field = nil) ⇒ Float
Get the sum value of the provided field.
Instance Method Details
#aggregates(field) ⇒ Hash
Get all the aggregate values for the provided field. Provided for interface consistency with Aggregable::Mongo.
17 18 19 20 21 |
# File 'lib/mongoid/contextual/aggregable/memory.rb', line 17 def aggregates(field) %w(count sum avg min max).each_with_object({}) do |method, hash| hash[method] = send(method, field) end end |
#avg(field) ⇒ Float
Get the average value of the provided field.
31 32 33 |
# File 'lib/mongoid/contextual/aggregable/memory.rb', line 31 def avg(field) count > 0 ? sum(field).to_f / count.to_f : nil end |
#max(field = nil) ⇒ Float, Document
Get the max value of the provided field. If provided a block, will return the Document with the greatest value for the field, in accordance with Ruby’s enumerable API.
51 52 53 |
# File 'lib/mongoid/contextual/aggregable/memory.rb', line 51 def max(field = nil) block_given? ? super() : aggregate_by(field, :max_by) end |
#min(field = nil) ⇒ Float, Document
Get the min value of the provided field. If provided a block, will return the Document with the smallest value for the field, in accordance with Ruby’s enumerable API.
71 72 73 |
# File 'lib/mongoid/contextual/aggregable/memory.rb', line 71 def min(field = nil) block_given? ? super() : aggregate_by(field, :min_by) end |
#sum(field = nil) ⇒ Float
Get the sum value of the provided field. If provided a block, will return the sum in accordance with Ruby’s enumerable API.
87 88 89 90 91 92 93 |
# File 'lib/mongoid/contextual/aggregable/memory.rb', line 87 def sum(field = nil) if block_given? super() else count > 0 ? super(0) { |doc| doc.public_send(field) } : 0 end end |