Mongo 使用 java 驱动程序和吗啡关闭安全模式?
Mongo upsert safe mode off with java driver and morphia?
使用 Mongo 3.0 我有:
Query<Client> queryClient = singleton.getDatastore().createQuery(Client.class).field("apiKey").equal(apiKey);
UpdateOperations<Client> opsClient =db.getDatastore().createUpdateOperations(Client.class).set("credits", soldeCredit);
db.getDatastore().updateFirst(queryClient, opsClient, true);
如何使用安全模式 关闭 进行更新插入?
我明白了。您应该查看采用 WriteConcern 的 update method。您想到的 "fire and forget" 模式是未确认的写入。
使用 Mongo 3.0 我有:
Query<Client> queryClient = singleton.getDatastore().createQuery(Client.class).field("apiKey").equal(apiKey);
UpdateOperations<Client> opsClient =db.getDatastore().createUpdateOperations(Client.class).set("credits", soldeCredit);
db.getDatastore().updateFirst(queryClient, opsClient, true);
如何使用安全模式 关闭 进行更新插入?
我明白了。您应该查看采用 WriteConcern 的 update method。您想到的 "fire and forget" 模式是未确认的写入。