Madelyn Olson

Results 63 issues of Madelyn Olson

## High level design We want to introduce a new Slot Migration process that atomically migrates a set of slots from a source node to a target node. We will...

**The problem/use-case that the feature addresses** One pattern that functions are suppose to allow is to "abstract" away the underlying details of a command implementation. One such way that might...

Today we don't place any specific restrictions on module command names. This can cause ambiguous scenarios. For example, someone might name a command like "module|feature" which would be incorrectly parsed...

A suggestion for how to resolve part of https://github.com/redis/redis/issues/11083. The idea is that we should retain categories and commands so we can correctly produce ACL strings that represent the original...

This issue covers a couple of high level of areas for improving Redis Cluster. Ranked roughly by priority in each pillar. Improved use case support This pillar focuses on providing...

**The problem/use-case that the feature addresses** At AWS, we automatically kill scripts after the timeout is exceeded (if it's a read-only script) to limit the impact of infinite scripts. We...

I want to start a conversation about trying to come up with a more memory efficient main Redis dictionary. The motivation primarily being that a lot of users of Redis...

The idea here is that Redis server nodes could proxy incoming requests to the desired node instead of relying on heavy client side logic to know the cluster topology. Simplifies...

Right now sets only have two encodings, intset and hashmap. The the intset is a fairly memory dense structure, but only supports integers. The hashmap alternative however has 32 bytes...

We should write a test suite that verifies replication and cluster protocol behavior between versions. Considered because of this change, https://github.com/redis/redis/pull/9530, which introduces an incompatibility between redis cluster versions. We...