Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A good rule of thumb to help reduce concurrency ordering problems is to make sure each single can be processed as an atomic unit in parallel (either without concurrency issues or using say, database locking); or if it can't, use a Message Group to relate the messages together which need to be processed in order by a single thread.

...