You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only AtomicDict.fast_iter is available (also see examples/atomic_dict/partitioned_iter.py), but it is not sequentially consistent in spite of concurrent mutations: one key may be repeated, some updates may be seen out-of-order, etc.
It is possible to implement a sequentially consistent iterator with the synchronous ops functionality.
The text was updated successfully, but these errors were encountered:
Currently only
AtomicDict.fast_iter
is available (also see examples/atomic_dict/partitioned_iter.py), but it is not sequentially consistent in spite of concurrent mutations: one key may be repeated, some updates may be seen out-of-order, etc.It is possible to implement a sequentially consistent iterator with the synchronous ops functionality.
The text was updated successfully, but these errors were encountered: