Class: Mongo::Operation::Update::Result Private
- Defined in:
- lib/mongo/operation/update/result.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Defines custom behavior of results for an update.
Constant Summary collapse
- MODIFIED =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The number of modified docs field in the result.
'nModified'.freeze
- UPSERTED =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The upserted docs field in the result.
'upserted'.freeze
Constants inherited from Result
Result::CURSOR, Result::CURSOR_ID, Result::FIRST_BATCH, Result::N, Result::NAMESPACE, Result::NEXT_BATCH, Result::OK, Result::RESULT
Instance Attribute Summary
Attributes inherited from Result
#connection_description, #replies
Instance Method Summary collapse
- #bulk_result ⇒ Object private
-
#matched_count ⇒ Integer
private
Get the number of documents matched.
-
#modified_count ⇒ Integer
private
Get the number of documents modified.
-
#upserted_count ⇒ Integer
private
Returns the number of documents upserted.
-
#upserted_id ⇒ Object
private
The identifier of the inserted document if an upsert took place.
Methods inherited from Result
#acknowledged?, #cluster_time, #cursor_id, #documents, #each, #error, #initialize, #inspect, #labels, #namespace, #ok?, #operation_time, #reply, #returned_count, #successful?, #topology_version, #validate!, #write_concern_error?, #written_count
Constructor Details
This class inherits a constructor from Mongo::Operation::Result
Instance Method Details
#bulk_result ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
90 91 92 |
# File 'lib/mongo/operation/update/result.rb', line 90 def bulk_result BulkResult.new(@replies, connection_description) end |
#matched_count ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Get the number of documents matched.
42 43 44 45 46 47 48 49 |
# File 'lib/mongo/operation/update/result.rb', line 42 def matched_count return 0 unless acknowledged? if upsert? 0 else n end end |
#modified_count ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Get the number of documents modified.
59 60 61 62 |
# File 'lib/mongo/operation/update/result.rb', line 59 def modified_count return 0 unless acknowledged? first[MODIFIED] end |
#upserted_count ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns the number of documents upserted.
86 87 88 |
# File 'lib/mongo/operation/update/result.rb', line 86 def upserted_count upsert? ? n : 0 end |
#upserted_id ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
The identifier of the inserted document if an upsert
took place.
73 74 75 76 |
# File 'lib/mongo/operation/update/result.rb', line 73 def upserted_id return nil unless upsert? upsert?.first['_id'] end |