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
The timeout check is only done for inserts (see Storage::store), but not for accesses (storage::operator[]).
Slow dumpers block the entire queue, since inserters can only access a Storage element once the dumper releases its mutex.
_rdtsc() is fast enough for store(), so it should also work for []
The text was updated successfully, but these errors were encountered:
The timeout check is only done for inserts (see Storage::store), but not for accesses (storage::operator[]).
Slow dumpers block the entire queue, since inserters can only access a Storage element once the dumper releases its mutex.
_rdtsc()
is fast enough for store(), so it should also work for[]
The text was updated successfully, but these errors were encountered: