Class: Mongoid::Contextual::MapReduce
- Inherits:
-
Object
- Object
- Mongoid::Contextual::MapReduce
- Includes:
- Enumerable, Command
- Defined in:
- lib/mongoid/contextual/map_reduce.rb
Instance Attribute Summary
Attributes included from Command
#collection, #collection The collection to query against., #criteria, #criteria The criteria for the context.
Instance Method Summary collapse
-
#counts ⇒ Hash
Get all the counts returned by the map/reduce.
-
#each ⇒ Enumerator
Iterates over each of the documents in the map/reduce, excluding the extra information that was passed back from the database.
-
#emitted ⇒ Integer
Get the number of documents emitted by the map/reduce.
-
#finalize(function) ⇒ MapReduce
Provide a finalize js function for the map/reduce.
-
#initialize(collection, criteria, map, reduce) ⇒ MapReduce
constructor
Initialize the new map/reduce directive.
-
#input ⇒ Integer
Get the number of documents that were input into the map/reduce.
-
#inspect ⇒ String
Get a pretty string representation of the map/reduce, including the criteria, map, reduce, finalize, and out option.
-
#js_mode ⇒ MapReduce
Sets the map/reduce to use jsMode.
-
#out(location) ⇒ MapReduce
Specifies where the map/reduce output is to be stored.
-
#output ⇒ Integer
Get the number of documents output by the map/reduce.
-
#raw ⇒ Hash
(also: #execute)
Get the raw output from the map/reduce operation.
-
#reduced ⇒ Integer
Get the number of documents reduced by the map/reduce.
-
#scope(object) ⇒ MapReduce
Adds a javascript object to the global scope of the map/reduce.
-
#time ⇒ Float
Get the execution time of the map/reduce.
Methods included from Command
Constructor Details
#initialize(collection, criteria, map, reduce) ⇒ MapReduce
Initialize the new map/reduce directive.
81 82 83 84 85 86 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 81 def initialize(collection, criteria, map, reduce) @collection, @criteria = collection, criteria command[:mapreduce] = collection.name.to_s command[:map], command[:reduce] = map, reduce end |
Instance Method Details
#counts ⇒ Hash
Get all the counts returned by the map/reduce.
19 20 21 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 19 def counts results["counts"] end |
#each ⇒ Enumerator
Iterates over each of the documents in the map/reduce, excluding the extra information that was passed back from the database.
34 35 36 37 38 39 40 41 42 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 34 def each if block_given? documents.each do |doc| yield doc end else to_enum end end |
#emitted ⇒ Integer
Get the number of documents emitted by the map/reduce.
52 53 54 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 52 def emitted counts["emit"] end |
#finalize(function) ⇒ MapReduce
Provide a finalize js function for the map/reduce.
66 67 68 69 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 66 def finalize(function) command[:finalize] = function self end |
#input ⇒ Integer
Get the number of documents that were input into the map/reduce.
96 97 98 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 96 def input counts["input"] end |
#inspect ⇒ String
Get a pretty string representation of the map/reduce, including the criteria, map, reduce, finalize, and out option.
224 225 226 227 228 229 230 231 232 233 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 224 def inspect %Q{#<Mongoid::Contextual::MapReduce selector: #{criteria.selector.inspect} class: #{criteria.klass} map: #{command[:map]} reduce: #{command[:reduce]} finalize: #{command[:finalize]} out: #{command[:out].inspect}> } end |
#js_mode ⇒ MapReduce
Sets the map/reduce to use jsMode.
108 109 110 111 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 108 def js_mode command[:jsMode] = true self end |
#out(location) ⇒ MapReduce
Specifies where the map/reduce output is to be stored.
132 133 134 135 136 137 138 139 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 132 def out(location) normalized = location.dup normalized.update_values do |value| value.is_a?(::Symbol) ? value.to_s : value end command[:out] = normalized self end |
#output ⇒ Integer
Get the number of documents output by the map/reduce.
149 150 151 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 149 def output counts["output"] end |
#raw ⇒ Hash Also known as: execute
Get the raw output from the map/reduce operation.
161 162 163 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 161 def raw results end |
#reduced ⇒ Integer
Get the number of documents reduced by the map/reduce.
184 185 186 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 184 def reduced counts["reduce"] end |
#scope(object) ⇒ MapReduce
Adds a javascript object to the global scope of the map/reduce.
198 199 200 201 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 198 def scope(object) command[:scope] = object self end |
#time ⇒ Float
Get the execution time of the map/reduce.
211 212 213 |
# File 'lib/mongoid/contextual/map_reduce.rb', line 211 def time results["timeMillis"] end |