redis icon indicating copy to clipboard operation
redis copied to clipboard

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bi...

Results 746 redis issues
Sort by recently updated
recently updated
newest added

I am running a 3 node redis cluster. I use appendonly files, enable appendfsync = always, min-slave-to-write = 2. I always write to the master and issue a WAIT command...

**Describe the bug** During scaling operations in a large Redis cluster (~300 nodes), we observed an unexpected delay of ~80 seconds for replica status changes (CLUSTER REPLICATE command) to propagate...

During tests, we use loglevel=debug and have small datasets. Under these conditions, we have many very short active defrag cycles (one every 1ms in extreme cases). Every time a defrag...

**Describe the bug** I am creating a Redis 8.0.0 Gentoo package but the test suit fails with following error: ``` *** [err]: Active defrag for argv retained by the main...

# Description Update `since` for all vector set commands from `1.0.0` to `8.0.0`

Mostly for tests but may also be used in production events Replaced hacky full-sync forcing in native/module "RDB short-read" tests

[Blog says 8.0 is released](https://redis.io/blog/redis-8-ga/), But is there a tagged release? I see an 8.0 branch: ``` % git log -1 commit 7cd656a0c371a87ffbf1505e2eb9efd9342c50c8 (HEAD -> 8.0, tag: 8.0-rc2-int, origin/8.0) Merge:...

In redis/src/cli_common.c `ssize_t cliWriteConn(redisContext *c, const char *buf, size_t buf_len) { int done = 0; /* Append data to buffer which is *usually* expected to be empty * but we...

I want to ask, in redis/src/ae.c, line number 268, te might point to NULL and be used later, should that happened? { "Dominated": false, "Score": 78, "Valid": true, "ReportChecker": "PSA...

I want to run redis(and redisearch as a module) via installing from source. I installed redis 7.4.2 from source by running: ``` sudo make MALLOC=libc CFLAGS="-DUSE_PROCESSOR_CLOCK" sudo make install cd...