-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Labels
Description
Feature description:
We would like to see a Redis keyvalue storage implementation added to the community-server.
We initially explored this when we experimented with scaling up the community-server horizontally by deferring the responsibility of concurrent read/write protection to the external keyvalue storage itself.
So we found out that in some cases (depending on the keyvalue storage utilized, e.g. Redis) the internal locking mechanism is unnecessary.
In our experiment we allowed immediate read/write operations to the Redis storage by implementing a (passthrough) VoidLocker.
We hope to open a PR with the implementation for:
- RedisKeyvalueStore
- VoidLocker