Hibernate控制的事务(ACID,atomicity consistency isolation durability) 1,读未提交的数据(Read uncommitted isolation) 2,读已提交的数据(Read committed isolation) ..
基于44个网页-相关网页
Supports table and row level locking and 4 isolation levels, RR (repeatable read), rs (read stability), CS (default - cursor stability) and ur (uncommitted read).
支持表级和行级锁以及4个隔离级别:RR(可重复读)、RS(读可靠)、CS(默认——游标可靠)和UR(未提交读)。
If you have a read-heavy workload, you might want to set isolation to uncommitted read (UR) at the connection level so that you don't have to specify it in each statement.
如果有一个包含大量读取操作的工作负载,那么您可能想将隔离级别设置为未提交读取(UR),从而不需要在每个语句中设置隔离级别。
For example, if one member is updating a row, it would not be proper for another member to read the row with any other isolation level than uncommitted read.
例如,如果一个成员正在更新一行数据,那么另一个成员就不能以未提交读(uncommitted read)以外的任何隔离级别读取这一行。
应用推荐