TL;DR: If you use `AtomicReferenceFieldUpdater` ju...
# coroutines
e
TL;DR: If you use
AtomicReferenceFieldUpdater
just like in my code (with static final var), then you code will get compiled to the native CAS instructions in your CPU (
CMPXCHG
for Intel) without any overhead.
🎉 1