Mongo - WriteConcern j 选项在日记功能关闭时有何作用?

Mongo - What does WriteConcern j option do when journaling is turned off?

文档不清楚当 Write Concern j 选项设置为 true 并且 mongod 运行 没有日志时会发生什么。这是否表明写入操作在确认已提交到数据库后将return?或者可以在写入提交到数据库之前进行写入操作 return 吗?我是不是想错了?

您考虑的很正确。来自 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.

只能假设您在尝试按照描述进行设置时会遇到某种错误。