Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added redis tag for redis key prefix to fix CROSSSLOT error in redis … #96

Open
wants to merge 1 commit into
base: v10
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions rate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ import (

"github.com/redis/go-redis/v9"
)

const redisPrefix = "rate:"
// Using curly braces around the key prefix name makes it a redis-tag.
// redis-tag ensures that all the keys starting with this prefix are mapped to the same keyslot when redis which will fix
// CROSSSLOT error in redis cluster.In single instance mode all keyslots are present in same shard hence CROSSSLOT error will not happen.
const redisPrefix = "{redis_rate}:"

type rediser interface {
Eval(ctx context.Context, script string, keys []string, args ...interface{}) *redis.Cmd
Expand Down