Does OrientDB actually implement MVCC?

OrientDB documentation here:

http://orientdb.com/docs/last/Concurrency.html#atomic-operations http://orientdb.com/docs/last/Distributed-Architecture.html#distributed-transactions

States that OrientDB implements MVCC. But does OrientDB actually keep multiple versions of records around? I don't see any documentation about how timestamps are chosen, how and when past versions of records are cleaned up, how any of this works in a distributed context, and whether or not consistent scans of data are supported across the cluster.

Could someone please clarify this?


I think what we call MVCC in OrientDB (I work for OrientDB) is widely known as optimistic locking. We work on a new transactional model which will support MVCC in the same way as InnoDB and probably PostgreSQL do. We will keep versions of data to allow writes do not block reads but they will be discarded once transactions which read them will be committed. But we have no plans to keep long-term versions of data.

链接地址: http://www.djcxy.com/p/30612.html

上一篇: PostgreSQL索引如何处理MVCC

下一篇: OrientDB是否实际实现了MVCC?