.NET의 더티(dirty) 읽기 및 판독이 불가능한 코드 예
더럽게 읽다
정의: A 업무 수행 과정에서 B 업무가 A 업무의 수정을 읽었지만 A 업무가 끝나지 않았습니다. A 업무는 나중에 성공할 수도 있고 실패할 수도 있습니다.
비유: A는 원본 코드를 수정했고 원본 코드 시스템에 제출하지 않았다. A는 QQ를 통해 직접 코드를 B에게 보냈고 A는 나중에 수정을 취소했다.
코드 예
[TestMethod]
public void _ ()
{
//
using (var context = new TestEntities())
{
Assert.AreEqual(1, context.Tables.Count());
}
var autoResetEvent = new AutoResetEvent(false);
var transactionOptions1 = new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted };
var transactionOptions2 = new TransactionOptions { IsolationLevel = IsolationLevel.ReadUncommitted };
using (var ts1 = new TransactionScope(TransactionScopeOption.Required, transactionOptions1))
{
//
using (var context = new TestEntities())
{
context.Tables.Add(new Table() { Id = Guid.NewGuid(), Name = " " });
context.SaveChanges();
}
ThreadPool.QueueUserWorkItem(data =>
{
using (var ts2 = new TransactionScope(TransactionScopeOption.Required, transactionOptions2))
{
//
using (var context = new TestEntities())
{
Assert.AreEqual(2, context.Tables.Count());
}
}
autoResetEvent.Set();
});
autoResetEvent.WaitOne();
}
//
using (var context = new TestEntities())
{
Assert.AreEqual(1, context.Tables.Count());
}
}
중복 읽기 불가
정의: A 업무는 두 번의 데이터를 읽었고 이 두 번의 읽기 과정에서 B 업무는 데이터를 수정했다. A 업무는 두 번의 읽은 데이터가 다르다(중복 읽기 불가).
비유: A는 소스 코드 심사를 하는데 심사 과정에서 두 번의 소스 코드를 얻었다. 이 두 번의 소스 코드를 얻는 동안 B는 소스 코드를 수정했다. B는 A가 심사한 코드일 가능성이 높고 이 부분의 코드는 규범에 맞지 않을 수도 있다.
코드 예
[TestMethod]
public void _ ()
{
var autoResetEvent = new AutoResetEvent(false);
var transactionOptions1 = new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted };
var transactionOptions2 = new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted };
using (var ts1 = new TransactionScope(TransactionScopeOption.Required, transactionOptions1))
{
//
using (var context = new TestEntities())
{
Assert.AreEqual(" ", context.Tables.First().Name);
}
ThreadPool.QueueUserWorkItem(data =>
{
using (var ts2 = new TransactionScope(TransactionScopeOption.Required, transactionOptions2))
{
//
using (var context = new TestEntities())
{
context.Tables.First().Name = " ";
context.SaveChanges();
}
ts2.Complete();
}
autoResetEvent.Set();
});
autoResetEvent.WaitOne();
//
using (var context = new TestEntities())
{
Assert.AreEqual(" ", context.Tables.First().Name);
}
}
}
환상적으로 읽다
정의: A사무는 두 번의 데이터를 읽었고 이 두 번의 읽기 과정에서 B사무는 데이터를 추가했다. A사무의 두 번의 읽기 집합은 다르다(환독).
비유: A는 통계 파일 데이터에서 A를 정확하게 통계하기 위해 두 번 통계했다. 이 두 번의 통계 과정에서 B는 파일을 추가했다. A는 이 두 번의 통계 수량이 다르다는 것을 발견하고(환독) A는 자신의 머리가 좀 아프다고 느낀다.
코드 예
[TestMethod]
public void _ ()
{
var autoResetEvent = new AutoResetEvent(false);
var transactionOptions1 = new TransactionOptions { IsolationLevel = IsolationLevel.RepeatableRead };
var transactionOptions2 = new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted };
using (var ts1 = new TransactionScope(TransactionScopeOption.Required, transactionOptions1))
{
//
using (var context = new TestEntities())
{
Assert.AreEqual(1, context.Tables.Count());
}
ThreadPool.QueueUserWorkItem(data =>
{
using (var ts2 = new TransactionScope(TransactionScopeOption.Required, transactionOptions2))
{
//
using (var context = new TestEntities())
{
context.Tables.Add(new Table() { Id = Guid.NewGuid(), Name = " " });
context.SaveChanges();
}
ts2.Complete();
}
autoResetEvent.Set();
});
autoResetEvent.WaitOne();
//
using (var context = new TestEntities())
{
Assert.AreEqual(2, context.Tables.Count());
}
}
}
네 가지 격리 단계는 어떻게 병발 문제를 처리합니까
더럽게 읽다
중복 읽기 불가
환상적으로 읽다
읽기가 커밋되지 않았습니다.
허락
허락
허락
읽기 커밋됨
허용되지 않음
허락
허락
중복 읽기 가능
허용되지 않음
허용되지 않음
허락
직렬화
허용되지 않음
허용되지 않음
허용되지 않음
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.