-
Hi Anthony,
We at Redis Labs like the work you have done on the Rust API for writing Redis modules.
We'd like to take it forward and contribute to the project, or become maintainers in case you're…
-
Even though the crate has the corresponding features to support various Redis server versions, varying from Redis 6 to the very latest Redis 7.2, the tests actually fail when running with Redis 6.
…
iddm updated
11 months ago
-
https://github.com/RedisJSON/RedisJSON/blob/5b6a8540e522515378891e0c97e89a361a2c6065/src/redisjson.rs#L239
-
when i call RedisGraph in redismodule-rs, redis fail.
```
fn hello_person(ctx: &Context, _: Vec) -> RedisResult {
let r = ctx.call("GRAPH.QUERY", &["person", r#"MATCH (n) RETURN n"#]);
m…
hcyrs updated
3 years ago
-
I compiled redisjson with redismodle-rs,I found allocation_free_panic not support windows only,I hope it can update to support windows
-
The API for `RedisModule_HashGet` uses C varargs. For our use case, we would like to call it with a list of keys to retrieve that is not known at compile time (specifically from [redismodule-rs](https…
-
### Build error in alpine image
Trying to build this module in alpine by using the Dockerfile in this repo as a guide, I'm getting errors consistently when attempting to compile redis-module.
Cl…
-
Hello,
I am trying to create an index with over 500 Sortable Tag Fields. Since sortable fields are directly available in the Aggregate pipeline this is perfect for faceted navigation. But I come ac…
sefai updated
3 years ago
-
In redis, when deleting a key that exists, a 1 is always returned.
```
127.0.0.1:6379> set foo bar
OK
127.0.0.1:6379> del foo
(integer) 1
127.0.0.1:6379>
```
When delete a key that does n…
-
Different Redis version expose new API that is not presented on old versions.
We should define a solution that will allow the user understand which API he can and can not use and avoid mistakes eithe…