クラス: Mongo::Operation::Update::Result
- 定義:
- build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb
Overview
更新の結果のカスタム動作を定義します。
定数の概要の削減
- 修飾語 =
この定数は、プライベート API の一部です。 この定数は将来削除または変更される可能性があるため、可能な限り使用しないでください。
結果内の変更されたDocsフィールドの数。
' nModified '.freeze
- アップサート =
この定数は、プライベート API の一部です。 この定数は将来削除または変更される可能性があるため、可能な限り使用しないでください。
結果のアップサートされたDocsフィールド。
「アップサート」.freeze
結果から継承される定数
結果::CURSOR 、結果::CURSOR_ID 、結果::FIRST_BATCH 、結果::N 、結果::NAMESPACE 、結果::Next_BATCH 、結果:: OK 、結果::RESULT
インスタンス属性の概要
結果から継承される属性
# connection_description 、 # connection_ global_id 、 # replays
インスタンス メソッドの概要を折りたたむ
- # bulk_result =オブジェクト
-
#matched_count =整数
一致したドキュメントの数を取得します。
-
#modified_count ⇒ Integer
変更されたドキュメントの数を取得します。
-
#upserted_count ⇒ Integer
アップサートされたドキュメントの数を返します。
-
# upserted_id =オブジェクト
アップサート が実行された場合、挿入されたドキュメントの識別子。
結果から継承されるメソッド
認証済み 、#cluster_time 、 #cursor_id 、 #documents 、各 、 #error 、 # has_cursor_id ? 、 #initiate 、 #inspect 、 # labels 、 #namespace 、 #ok? 、 #operation_time 、# reply 、#returned_count 、 #snapshot_timestamp 、#成功し たかどうか 、 トポロジー_バージョン 、検証し ます。 、 #write_concern_error 、 #Written_count
コンストラクターの詳細
このクラスは、 Mongo::Operation::Resultから コンストラクターを継承します。
インスタンス メソッドの詳細
# bulk_result =オブジェクト
101 102 103 |
ファイル 'Build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb', 行101 デフォルト bulk_result BulkResult.新着情報(@reprise, connection_description) end |
#matched_count =整数
一致したドキュメントの数を取得します。
49 50 51 52 53 54 55 56 |
ファイル 'Build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb', 行49 デフォルト matched_count return 0 ただし、 確認済み? 場合 upsert? 0 else n end end |
#modified_count ⇒ Integer
変更されたドキュメントの数を取得します。
67 68 69 70 |
ファイル 'Build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb', 行67 デフォルト moded_count return 0 ただし、 確認済み? 最初に[変更] end |
#upserted_count ⇒ Integer
アップサートされたドキュメントの数を返します。
96 97 98 |
ファイル 'Build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb', 行96 デフォルト upserted_count upsert? ? n : 0 end |
# upserted_id =オブジェクト
アップサートの場合、挿入されたドキュメントの識別子
took place.
82 83 84 85 |
ファイル 'Build/ruby-Driver-v 2.19 /lib/mongo/operation/update/result.rb', 行82 デフォルト upserted_id return nil ただし、 upsert? upsert?.最初に['_id'] end |