Questions tagged [redisclient]
61 questions
2
votes
0 answers
Listening to a queue in redis with spring-boot application and lettuce library
I have developed different services based on Spring-boot, Spring-cloud, and microservices architecture, also I am using the following dependency as Redis-client:
implementation 'io.lettuce:lettuce-core:6.1.5.RELEASE'
I have defined my RedisBean in…

Sobhan
- 1,280
- 1
- 18
- 31
2
votes
1 answer
How to connect Amazon ElastiCache for Redis nodes enabled with in-transit encryption using redis-cli from windows server and/ from redis GUI client
I have a AWS elasticache(cluster mode disabled) with encryption at rest & encryption-in-transit enabled and trying to use redis-cli to connect from windows server (within same vpc).
Trying to connect to the RedisCluster from the server by following…

user19120834
- 21
- 3
2
votes
0 answers
Redis - Mass insertion of data in cluster mode
I am trying to understand how one can perform mass insertion in Redis instances operating in the cluster mode. I came across this link:
https://redis.io/topics/mass-insert
It has a sample code one could use to generate data and populate Redis using…

pree
- 2,297
- 6
- 37
- 55
2
votes
1 answer
Redis PUBSUB connection issue after idle period
I am using nelikelov/redisclient version 0.5.0 and I am using code same as in the PUBSUB example provided in the library. My application subscribes to a channel and receives messages.
What I am facing is that every Monday, the application is not…

georgeliatsos
- 1,168
- 3
- 15
- 34
2
votes
1 answer
connect-redis client.unref is not a function
I am setting up redis with express-session in node.
I am getting this error:
if (options.unref) this.client.unref();
this.client.unref is not a function
this error points to redis-connect's library in my node_modules.
here's the basic code I have…

theman0123
- 153
- 1
- 17
2
votes
0 answers
node js app with redis backend - how to send a "SCAN" command
I've just installed a redis client for my node application. Package information is as follows:
me@mydevbox:/var/www/html/node/test$ cat package.json
{
"name": "test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node…

Happydevdays
- 1,982
- 5
- 31
- 57
2
votes
1 answer
How can I view all the stored session's REDIS keys and values in .Net application?
Session["User"] = "LTA";
I used this session in my application.
I am unable to view this stored session values in .net application.
I tried in below way:
ConnectionMultiplexer redisConnection =…

LTA
- 191
- 3
- 16
1
vote
1 answer
Redis client connecting to a different port
I have launched redis on port 6379.
And I connected a redis-cli client to the same port.
But when I run this command:
client list
It shows me the following redis-cli connected:
id=5 addr=IP-MASKED:46604 laddr=IP-MASKED:6379 fd=8 name= age=124…

Ankit Sahay
- 1,710
- 8
- 14
1
vote
0 answers
How to mock RedissionClient.createBatch()
I'm trying to unit test a piece of code and I want to mock the
redissionClient.createBatch() method call which returns the RBatch object.
Code snippet looks like:
RBatch batch =redissonClient.createBatch();
How do I…

Harihara_K
- 174
- 16
1
vote
0 answers
redis.createClient() doesn't work in docker
I want to use redis-image in docker-hub.
so, i make docker-compose.yml file like this
version: "3.7"
services:
backend:
container_name: test-server
build:
context: .
dockerfile: Dockerfile
volumes:
- ".:/app"
-…

Seonghun
- 161
- 7
1
vote
1 answer
I am getting a Type Error when creating a set type of redis database in node.js app
I am trying to add a set to a redis database in a node.js app like this:
let redisConnect = async () => {
redisClient.on('error', (err) => {
console.log('Redis Client Error', err);
});
redisClient.on('ready', () => console.log('Redis is…

Imari Childress
- 55
- 4
1
vote
1 answer
Issues while executing node using redis for data client
While running redis when is try to get data it showing this kind of errors what is wrong with this.
(node:12362) UnhandledPromiseRejectionWarning: ReferenceError: queueMicrotask is not defined
at RedisSocket.cork…
user17513056
1
vote
1 answer
Does 'hiredis' support Redis Sentinel and Redis Cluster?
'hiredis' is a minimalistic C client for Redis. Does anyone know if it supports -
Redis Sentinel (the official high availability solution for Redis) https://redis.io/topics/sentinel
and Redis Cluster https://redis.io/topics/cluster-tutorial
It is…

smulkutk
- 71
- 9
1
vote
0 answers
How to Connect to redis through SSH in c#? Which C# client have that provision?
I have Linux server used for Redis and DB, I need to connect the redis server through SSH from C# code. Which redis c# client has that provision?

user2972244
- 31
- 3
1
vote
2 answers
Options for Redis 5.0 Cluster with C++
I am exploring Redis 5.0 cluster with C++. I have already seen different options listed on Redis official site, but none of the C++ clients are marked recommended there. I tried C client "hiredis-vip", it worked for my initial prototype, however…

arz
- 33
- 3