-
Is it possible to use slicing operator or similar to get a range of values like
`json.get keys .rows[:10]`
If not, whats the most efficient way to get a slice of values?
-
[JSON.ARRINDEX](https://oss.redislabs.com/redisjson/commands/#jsonarrindex) must return `10` but returns `(integer) -1` :
```
127.0.0.1:6379> JSON.GET d [10]
"{\"code\":\"AAL\",\"coordinates\":{\…
-
Hey Guys,
I need to traverse nested JSON object and get retrieve its value using JSON path syntax.
Eg:
```
JSON.SET acl_user_rule_1 . '{"access":{"organisations":{"orgId1":{"applications":{"a…
-
There have been reports of `dump.rdb` being corrupted. To the best of my knowledge this happened on PyTorch models running on GPU, but I don't have a direct repro. Reports talk of this happening after…
-
I have this code
var connectionMultiplexer = await ConnectionMultiplexer.ConnectAsync("localhost");
var redisDb = connectionMultiplexer.GetDatabase(1);
v…
-
Hi, related to #35
I've found that #35 was solved for JSON.GET, but in my case I require the same thing on JSON.MGET. Any chance to get the same feature in this command?
Thank you in advance
-
I'm receiving the redis.exceptions.BusyLoadingError for around 2 minutes after startup from a 33MB RDB file. Most of the data is in a single large JSON key (maybe relevant?).
It seems to shutdown a…
-
Reason is easy: All the JSON.parse and stringify for all Object operations AND that objects are read for each state access
Ideas could be caching in general ... question is how best?
* cache for a…
-
The current `Makefile` is from v1. We may want to keep it to build the docs etc. and possibly as a front end to `cargo`. But the targets should be updated accordingly.
@gkorland WDYT?
-
The Redis [SET](https://redis.io/commands/set) command always resets the TTL of the key on a successful write.
The [JSON.SET](https://oss.redislabs.com/redisjson/commands/#jsonset) command only see…