2015年1月5日

h2database源码浅析:集群

摘要: Clustering / High AvailabilityThis database supports a simple clustering / high availability mechanism. The architecture is: two database servers run ... 阅读全文

posted @ 2015-01-05 22:57 白乔 阅读(466) 评论(0) 推荐(0) 编辑

h2database源码浅析:锁与MVCC

摘要: Table Level LockingThe database allows multiple concurrent connections to the same database. To make sure all connections only see consistent data, ta... 阅读全文

posted @ 2015-01-05 22:54 白乔 阅读(879) 评论(0) 推荐(0) 编辑

h2database源码浅析:事务、两阶段提交

摘要: Transaction IsolationTransaction isolation is provided for all data manipulation language (DML) statements. Most data definition language (DDL) statem... 阅读全文

posted @ 2015-01-05 22:54 白乔 阅读(437) 评论(0) 推荐(0) 编辑

h2database源码浅析:TransactionMap、MVMap、MVStore

摘要: TransactionStore:A store that supports concurrent MVCC read-committed transactions.TransactionStore.Transaction:A transaction.TransactionStore.Transac... 阅读全文

posted @ 2015-01-05 21:53 白乔 阅读(557) 评论(0) 推荐(0) 编辑

导航