Apache Ignite is a memory-centric distributed database. However, there is a native persistence option in Ignite. If you turned it off, it is a pure in-memory store. When the option is turned on, it stores both data and indexes on disk. In this mode, a subset of data is stored in memory. Additionally, one benefit of this mode is that the indexes don't need to be rebuild when the system restarts since they are persisted on the disk.
Read Committed Serializable Repeatable Read
Ignite supports the following three isolation levels: READ_COMMITTED, REPEATABLE_READ, and SERIALIZABLE.
Ignite is a memory-centric distributed database, caching, and processing platform. Ignite uses a shared-nothing, node-based cluster architecture. The nodes Ignite nodes can automatically discover each other. This helps to scale the cluster when needed, without having to restart the whole cluster.
Multi-version Concurrency Control (MVCC)
MVCC now is released as beta versions in Ignite version 2.7 In MVCC, Ignite will create a logical snapshot of data for each transaction. The snapshot is consistent throughout the transaction and the transaction can only view and modify data in this snapshot. If an entry is read by transaction A and updated by transaction B when transaction A tries to update the entry again, Ignite will throw an exception and transaction A will need to be retried.
https://github.com/apache/ignite
http://apacheignite.readme.io/docs
Apache Foundation
2014