redis Questions

2

I am running a nodeJS application using forever npm module. Node application also connects to Redis DB for cache check. Quite often the API stops working with the following error on the forever log...
Knave asked 24/2, 2020 at 6:44

0

I'm using Spring Security with Spring Session which serializes the session to Redis as JSON. To make it properly working I make this Spring Session configuration. Also, I added SecurityJackson2Modu...
Eal asked 26/9, 2021 at 19:31

4

Solved

I want to store netsted HashMap in Redis having single key. For example : HashMap<String, HashMap<String,String>> map = new HashMap<>(); Please Suggest : Is there any way t...
Algy asked 10/9, 2018 at 10:39

1

I couldn't find the answer anywhere, and the description field when hovering are identical for me: "Status of Multi-AZ Automatic Failover. If enabled, in case of primary node loss, failover to...
Commend asked 8/9, 2021 at 14:57

2

Solved

I am using celery with Redis. Current Redis is used as a broker and as a result backend. BROKER_TRANSPORT = 'redis' BROKER_URL = 'redis://domain:8888/0' CELERY_RESULT_BACKEND = 'redis://domain:8888...
Oldster asked 3/5, 2016 at 23:57

2

Solved

I'm trying to run rqscheduler with django-rq on Heroku with RedisToGo. I've implemented django-rq as described in their readme (https://github.com/ui/django-rq). I have a worker that starts an rqw...
Vibraphone asked 12/12, 2016 at 23:4

10

Solved

Is there a way to print the number of keys in Redis? I am aware of keys * But that seems slightly heavy weight. - Given that Redis is a key value store maybe this is the only way to do it. But...
Greengrocer asked 27/3, 2012 at 11:6

2

Solved

I can not run the celery worker + redis + django. If I run this command to check that celery worker is ready to receive tasks: celery -A car_rental worker -l info I got this error: [2020-02-24 ...
Bitty asked 23/2, 2020 at 23:42

5

Solved

I run my Integration Test cases with Spring Boot with the help of my local Redis server on my machine. But I want an embedded Redis server which is not dependent on any server and can run on any e...
Vagal asked 11/9, 2015 at 13:3

3

Solved

I have this redis cache where values are set about 100 times each day. After running for some days perfectly I am getting the connection error "maximum number of clients reached". After restarting ...
Modernize asked 18/6, 2018 at 13:31

4

I'm starting up redis and sentinel nodes using the below configurations. I start the redis node first and when I start Sentinel, if fails with the error: sentinel_node | sentinel_node | *** FATAL ...
Riebling asked 12/8, 2019 at 15:54

3

Solved

I used to do client.setex(key, 900, value) for storing single key-value. But, I want to store an object with expiration time. I come up with function hmset, but I don't know how to make expiration ...
Mamiemamma asked 26/12, 2018 at 11:0

2

Solved

I'm trying to install Redis on Kubernetes environment with Bitnami Redis HELM Chart. I want to use a defined password rather than randomly generated one. But i'm getting error below when i want to ...
Hunk asked 27/8, 2021 at 22:58

4

Let's say I have a database with 1,000,000 keys. Is there a way to know the last 10 keys from that database?
Victoir asked 15/5, 2013 at 19:38

3

Solved

Setup: I have a virtual machine and in the virtual machine running three containers (an nginx proxy, a very minimalistic flask app and redis). Flask should be serving on port 5000 while redis on 63...
Toddy asked 3/3, 2019 at 3:26

5

Solved

If I have 5 members with scores as follows a - 1 b - 2 c - 3 d - 3 e - 5 ZRANK of c returns 2, ZRANK of d returns 3 Is there a way to get same rank for same scores? Example: ZRANK c = 2, d = 2...
Marquardt asked 3/9, 2018 at 15:2

0

I just created an EC Redis Replication Group supporting SSL. This is the primary endpoint: master.dev-my-site.wmrsll.use1.cache.amazonaws.com:6379 I also created a CNAME: dev-my-site.mydomain.com t...
Furgeson asked 26/8, 2021 at 19:23

2

I have redis DB setup running on my minikube cluster. I have shutdown my minikube and started after 3 days and I can see my redis pod is failing to come up with below error from pod log Bad file fo...
Doykos asked 23/8, 2021 at 8:43

2

Solved

There is an redis instance been created in ElasticCache and this will be used to store and retrieve data as usual. Is there any max memory for this redis instance and how can that be checked? All I...
Phlebotomy asked 30/7, 2020 at 17:33

2

Solved

Decided to store images in Redis, how to do it correctly? Now I do this: $redis->set('image_path', 'here is the base64 image code'); I'm not sure this is normal.
Marked asked 8/12, 2020 at 18:45

3

Solved

I am looking for a very simple starter C# application for using StackExchange.Redis I have search over the web and found StackExchange.Redis But this doesn't seems like a quick startup example. I...
Tripetalous asked 1/10, 2015 at 13:12

1

I've followed all the steps in the following video: https://www.youtube.com/watch?v=fvYo6LBZUh8&t=166s However, I'm not able to connect with "heroku redis", I am using celery to imple...
Leucocratic asked 3/4, 2021 at 20:41

7

I get the following error, whenever I execute any commands that modify data in redis Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modi...
Vivien asked 9/11, 2013 at 6:18

3

I want to implement JWT in my next project. I just want to know if there is any best way to implement logout from all devices in JWT. As JWT is stateless mechanism, do we have to involve redis/db? ...
Alkali asked 29/4, 2016 at 5:15

1

I am trying to launch a redis docker container using docker-compose, but I always get this error. This is my docker-compose run commands docker-compose -f docker-compose.yml build and docker-compos...
Ethic asked 11/9, 2018 at 0:27

© 2022 - 2024 — McMap. All rights reserved.