j
Write Concern Option が true に設定され、mongod がジャーナルなしで実行されている場合に何が起こるかについて、ドキュメントは明確ではありません。これは、書き込み操作がデータベースにコミットされたことが確認された後に戻ることを示していますか? または、書き込みがデータベースにコミットされる前に、書き込み操作が戻る可能性がありますか? 私はこれについて間違って考えていますか?
質問する
141 次
1 に答える
1
You're thinking about it correctly. From the documentation:
Changed in version 2.6: Specifying a write concern that includes j: true to a mongod or mongos running with --nojournal option produces an error. Previous versions would ignore the j: true.
One can only assume that you will get some sort of error while trying to set it up as described.
于 2016-04-12T15:10:45.457 に答える