Use Read Write Lock for DB
Open
enhancement
performance
- Dominant language
- Java
- Stars
- 109
- Forks
- 11
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.