Madelyn Olson

Results 414 comments of Madelyn Olson

We might want to consider supporting more advanced types of "eviction" policies in future versions. I've actually heard a number of customers from AWS grumble that a global LRU/LFU is...

@gkorland Do you have any interest in taking over this PR?

@zamazan4ik Can you add more context about what you mean about "passing" jepsen. Jepsen is a suite for understanding the ways a distributed system can fail. Redis intentionally does *not*...

We don't actively run such tests, since we don't aim to pass them. You can check out this post, https://aphyr.com/posts/283-jepsen-redis, which has some more information on jepsen.

I'm not sure that the correct behavior is to replicate the deletes, but the replicas should be purging the keys from slots that are no longer owned from their masters....

My suggested implementation details is: `CLUSTER GETSLOTINFO [SLOTS slot [slot ...]] ` * Adding the SLOTs token makes sure the API isn't constrained, and we could add flags in the...

Just for completeness, I think the main counter point for tracking memory usage is that we could do all the work to do the book keeping based off of Zmalloc....

Related to https://github.com/redis/redis/pull/10152

@oranagra @redis/core-team Thoughts about https://github.com/redis/redis/issues/10472#issuecomment-1138070198 ? The idea is that there should be an O(1) way for getting the allocated size for all data structures in Redis. The dense structures...

> I am curious to know why there are different factors (such as 16 for sets, 8 for lists, etc). I thought that your plan is to add a single...