Transactions In MongoDB

前端 未结 3 1520
借酒劲吻你
借酒劲吻你 2020-12-31 13:38

I am using a NoSQL database MongoDB with Java and Spring Data. I am aware that MongoDB only supports transactions for a single document.

I am using Spring Transacti

3条回答
  •  渐次进展
    2020-12-31 14:01

    MongoDB does support transaction-like semantics using two-phase commits.

    There is also another independent effort to support transactions in mongodb using optimistic locking.

提交回复
热议问题