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 we are using an exclusive lock for DB.
However we can allow multiple readers on the DB as they do not change the underlying store.
The idea is to use exclusive lock for writers and shared lock for read queries.
Acceptance Criteria:
Run redis-benchmark on few commands
The text was updated successfully, but these errors were encountered:
Currently we are using an exclusive lock for DB.
However we can allow multiple readers on the DB as they do not change the underlying store.
The idea is to use exclusive lock for writers and shared lock for read queries.
Acceptance Criteria:
Run redis-benchmark on few commands
The text was updated successfully, but these errors were encountered: