Class: Mongo::Operation::Update::Result

Inherits:
Result
  • Object
show all
Defined in:
build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb

Overview

Defines custom behavior of results for an update.

Since:

  • 2.0.0

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.

Since:

  • 2.0.0

'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.

Since:

  • 2.0.0

'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, #connection_global_id, #replies

Instance Method Summary collapse

Methods inherited from Result

#acknowledged?, #cluster_time, #cursor_id, #documents, #each, #error, #has_cursor_id?, #initialize, #inspect, #labels, #namespace, #ok?, #operation_time, #reply, #returned_count, #snapshot_timestamp, #successful?, #topology_version, #validate!, #write_concern_error?, #written_count

Constructor Details

This class inherits a constructor from Mongo::Operation::Result

Instance Method Details

#bulk_resultObject

Since:

  • 2.0.0



101
102
103
# File 'build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb', line 101

def bulk_result
  BulkResult.new(@replies, connection_description)
end

#matched_countInteger

Get the number of documents matched.

Examples:

Get the matched count.

result.matched_count

Returns:

  • (Integer)

    The matched count.

Since:

  • 2.0.0



49
50
51
52
53
54
55
56
# File 'build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb', line 49

def matched_count
  return 0 unless acknowledged?
  if upsert?
    0
  else
    n
  end
end

#modified_countInteger

Get the number of documents modified.

Examples:

Get the modified count.

result.modified_count

Returns:

  • (Integer)

    The modified count.

Since:

  • 2.0.0



67
68
69
70
# File 'build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb', line 67

def modified_count
  return 0 unless acknowledged?
  first[MODIFIED]
end

#upserted_countInteger

Returns the number of documents upserted.

Examples:

Get the number of upserted documents.

result.upserted_count

Returns:

  • (Integer)

    The number upserted.

Since:

  • 2.4.2



96
97
98
# File 'build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb', line 96

def upserted_count
  upsert? ? n : 0
end

#upserted_idObject

The identifier of the inserted document if an upsert

took place.

Examples:

Get the upserted document’s identifier.

result.upserted_id

Returns:

  • (Object)

    The upserted id.

Since:

  • 2.0.0



82
83
84
85
# File 'build/ruby-driver-v2.19/lib/mongo/operation/update/result.rb', line 82

def upserted_id
  return nil unless upsert?
  upsert?.first['_id']
end