g.Offline Concurrency Patterns

  1. Summary

      1. Problem of Concurrency comes in picture when two or more threads /process or user try to work with same data.

      2. There are several patterns that deals with Concurrency pattern and each optimized to a particular business problems.

  2. Concurrency Vs Synchronization

      1. Synchronization deal at very low level and it`s focus is to prevent the incorrect R/W due to thread racing issues.

      2. Concurrency implement policy that decide what to do when a such conflict happens.

  1. Concurrency Patterns Index