-
Type: Improvement
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: Internal Code
-
None
-
Service Arch
-
Fully Compatible
-
Service Arch 2024-03-04
We currently use synchronized_value (which is backed by std::mutex) to synchronize readers/writers, but readers are only reading a small integer (< 64-bit) and only synchronize to read the value (their value can become stale). That being said, the mutex can be replaced with an AtomicWord.