Questions tagged [redisjson]
117 questions
0
votes
0 answers
Init RedisJson with Predis module version error
I'm getting this error found in the constructor of RedisJson from mkorkmaz /
redislabs-rejson
Argument 1 passed to Redislabs\Module\RedisJson\RedisJson::setModuleVersion() must be of the type array, string given, called in…

Abdelraouf Ferah
- 70
- 9
0
votes
1 answer
Does Vertx 3.9.0 supports Redis Json or not? Any other ways to achieve it?
I am working with Vertx 3.9.0, I am trying to get json data for a key from redis Server.
redisConnection.send(Request.cmd(Command.GET).arg(key), handler->{
if(handler.succeeded()) {
Response response = handler.result();
…

adhikari
- 112
- 2
- 13
0
votes
1 answer
RedisJson rejson.so file not created
i am trying to setup Redisjson on redis-server
git clone https://github.com/RedisLabsModules/rejson.git
cd rejson/
make
after the make command i dont have a file called rejson.so anywhere however make command finished without error
so that's why i…
0
votes
1 answer
How to create to the specific host/post a client to the specific host/post in JReJSON with password?
This is how javadoc mentions the definition of JReJSON
JReJSON(String host, int port)
Creates a client to the specific host/post a client to the specific host/post
but there is provision to provide password
along with host and port as only two…

Sumit Sawant
- 21
- 1
- 8
0
votes
2 answers
redis connection refused between containers
I'm building a small app divided in 3 services using docker I have redisjson service a node server and a python application.
I always run the redis inside a container for development, in the first stages I run the python script and the node app…

nricks
- 13
- 4
0
votes
1 answer
Redis Problem compiling ReJSON Module for Windows
I have been trying to find or perhaps compile ReJSON Module for my Windows machine. I could not find any pre-compiled version of ReJSON Module that's why I thought of compiling it myself. So, I visited their GitHub page for source proceeded with…

Airy
- 5,484
- 7
- 53
- 78
0
votes
0 answers
How to add rejson Python module to existing Redis container
I am using a Docker container of Ubuntu, Redis and Python+Flask. I want to also use Redis rejson module in this container but don't know how to combine the two since RedisJSON is (probably only) run via its Docker container.
I tried to just import…

Guy_g23
- 316
- 2
- 7
0
votes
1 answer
Share PVs in Deployment for Redis ReJSON not working
Cluster information:
Kubernetes version: Major:"1", Minor:"17"
Cloud being used: bare-metal
Installation method: minikube with kubectl
Host OS: Ubuntu 16.04
Question:
I'm creating 3 replicas and gonna create JSON set in one of the pod. the data…

dhiraj111
- 1
- 1
0
votes
1 answer
Fastest and Best way to store and access complex JSON objects on Redis
I've been using ReJSON(json.set) for storing complex JSON on my redis server. For ex:
{'2018-02-01' : {'cid_1':{ 'city_1: {'mid_1: {'user_data : ...},{'merchant_data': ...},{'item_data':...}...}...}...}
Accessing one key at a time is blazingly…

Rags Gupta
- 171
- 1
- 2
- 13
0
votes
1 answer
Advice on storing this data (JSON) in Redis without overwriting existing?
I'm new to ALL aspects of what I am about to ask.
I'm trying to determine if I can successfully store some polled metrics which come as JSON data in Redis.
In one way I have managed to do it already. The following python script will poll the device,…

ddevalco
- 1,209
- 10
- 20
-1
votes
1 answer
What is the difference between rejson.so and librejson.so?
I'm trying to setup RedisJSON on Redis Server with Ubuntu 20.04
and i built it using these steps from the docs (https://redis.io/docs/stack/json/#build-on-ubuntu-2004):
git clone --recursive https://github.com/RedisJSON/RedisJSON.git
cd RedisJSON…

Kevin
- 1
- 2
-1
votes
1 answer
REdisJSON Command JSON.SET is not working in syslog-ng destination
I have tried "LPUSH" command in the following code, it works but redisjson command is not working
destination d_redis {
redis(
host("localhost")
port(6379)
command("JSON.SET", "test", "${MESSAGE}")
);
};
Can someone…

Mahe Krish
- 141
- 1
- 7