.NET의 더티(dirty) 읽기 및 판독이 불가능한 코드 예

6893 단어
이 가능하다, ~할 수 있다,...
더럽게 읽다
정의: 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());
                 }
             }
         }

네 가지 격리 단계는 어떻게 병발 문제를 처리합니까
 
더럽게 읽다
중복 읽기 불가
환상적으로 읽다
읽기가 커밋되지 않았습니다.
허락
허락
허락
읽기 커밋됨
허용되지 않음
허락
허락
중복 읽기 가능
허용되지 않음
허용되지 않음
허락
직렬화
허용되지 않음
허용되지 않음
허용되지 않음

좋은 웹페이지 즐겨찾기