Class: MongoDoc::Collection
Instance Attribute Summary collapse
-
#_collection ⇒ Object
Returns the value of attribute _collection.
Instance Method Summary collapse
- #find(query = {}, options = {}) ⇒ Object
- #find_one(spec_or_object_id = nil, options = {}) ⇒ Object
-
#initialize(name) ⇒ Collection
constructor
A new instance of Collection.
- #insert(doc_or_docs, options = {}) ⇒ Object (also: #<<)
- #save(doc, options = {}) ⇒ Object
- #update(spec, doc, options = {}) ⇒ Object
Constructor Details
#initialize(name) ⇒ Collection
Returns a new instance of Collection.
9 10 11 |
# File 'lib/mongodoc/collection.rb', line 9 def initialize(name) self._collection = self.class.mongo_collection(name) end |
Instance Attribute Details
#_collection ⇒ Object
Returns the value of attribute _collection.
5 6 7 |
# File 'lib/mongodoc/collection.rb', line 5 def _collection @_collection end |
Instance Method Details
#find(query = {}, options = {}) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/mongodoc/collection.rb', line 13 def find(query = {}, = {}) cursor = wrapped_cursor(query, ) if block_given? yield cursor cursor.close else cursor end end |
#find_one(spec_or_object_id = nil, options = {}) ⇒ Object
23 24 25 |
# File 'lib/mongodoc/collection.rb', line 23 def find_one(spec_or_object_id = nil, = {}) MongoDoc::BSON.decode(_collection.find_one(spec_or_object_id, )) end |
#insert(doc_or_docs, options = {}) ⇒ Object Also known as: <<
27 28 29 |
# File 'lib/mongodoc/collection.rb', line 27 def insert(doc_or_docs, = {}) _collection.insert(doc_or_docs.to_bson, ) end |
#save(doc, options = {}) ⇒ Object
32 33 34 |
# File 'lib/mongodoc/collection.rb', line 32 def save(doc, = {}) _collection.save(doc.to_bson, ) end |
#update(spec, doc, options = {}) ⇒ Object
36 37 38 39 |
# File 'lib/mongodoc/collection.rb', line 36 def update(spec, doc, = {}) _collection.update(spec, doc.to_bson, ) (last_error || {})['updatedExisting'] || false end |