redis Questions

1

I am trying to check celery results from the command line but get a No Result Backend Configured error. I have setup redis as my result backend and am now at a loss. I have the celery app setup l...
Eastbound asked 21/7, 2017 at 14:45

2

Solved

I'm building a simple game type application where I have user authentication. I'm planning on using Redis for my database, and I was wondering what the best practice was to store users? What I unde...
Thaumaturgy asked 31/7, 2015 at 3:34

3

Solved

To flush redis, the FLUSHALL command is to be used. Using Redis 2.6.16, when I tried both FLUSHALL and FLUSHDB commands while using redis-cli, I got an unknown command error. Other commands work f...
Maccarthy asked 2/4, 2014 at 14:55

7

Is it possible to SET redis keys without removing their existing ttl? The only way I know of at the present time is to find out the ttl and do a SETEX but that seems less accurate.
Viosterol asked 20/2, 2014 at 3:13

4

Solved

I'm using redis-py binding in Python 2 to connect to my Redis server. The server requires a password. I don't know how to AUTH after making the connection in Python. The following code does not wo...
Pallaton asked 10/5, 2015 at 8:51

3

Solved

I have tried method in this question, but it does not work since I'm working in cluster mode, and redis told me: (error) CROSSSLOT Keys in request don't hash to the same slot
Exothermic asked 11/12, 2018 at 1:46

3

I'm trying to setup E2E tests in a NestJS project, however, jest output looks like this: Jest did not exit one second after the test run has completed After a lot of reading this is because there ...
Coroner asked 19/7, 2020 at 0:37

0

I’m developing a distributed application that retrieves data from a global redis cache and caches the data locally using Caffeine. From my understanding Caffeine was designed to cache data in memor...
Wedekind asked 22/3, 2022 at 2:3

13

Solved

I currently have a live redis server running on a cloud instance and I want to migrate this redis server to a new cloud instance and use that instance as my new redis server. If it were MySQL, I wo...
Asgard asked 14/5, 2011 at 21:31

6

Solved

We are defining an architecture to collect log information by Logstash shippers which are installed in various machines and index the data in one elasticsearch server centrally and use Kibana...
Unfeigned asked 9/4, 2015 at 13:10

4

Solved

Recently, we had an outage due to Redis being unable to write to a file system (not sure why it's Amazon EFS) anyway I noted that there was no actual HEALTHCHECK set up for the Docker service to ma...
Mariel asked 9/6, 2021 at 12:56

3

After writing some data to a redis server, I could read the data from a client. However, how can I find the data directory on the file system?
Seidel asked 29/8, 2015 at 9:16

2

Solved

I cache some data in redis, and reading data from redis if it's exists, otherwise reading data from database and write the data in redis. I find that there are several ways to update redis after u...
Rumania asked 30/3, 2016 at 8:2

2

Hello when I use node port to expose my redis service it works fine. I am able to access it. But if I try switch to Ingress Nginx controller it refuse to connect.. Other apps work fine with ingress...
Noletta asked 16/7, 2020 at 17:1

5

Why does this not print 'hello'? $ redis-cli 127.0.0.1:6379> eval "print( 'hello' )" 0 (nil) 127.0.0.1:6379> Running 2.8.14 on Mac OS X, 2.8.12 on Windows 7. I'm calling Lua scripts from ...
Pagandom asked 7/10, 2014 at 18:32

4

I'm using SSL enabled Redis (ElasticCache from AWS), and having difficulty in connecting to it using Spring Data Redis. (Note that the connectivity works fine, if I use plain Jedis or Jedis Pool w...
Wonderment asked 29/1, 2018 at 3:26

2

I had redis installed without password. Then I tried to put password without success and decided to delete all related to redis from my server. After that, I've installed redis once again and set a...
Hutcherson asked 11/1, 2015 at 14:38

4

I have a Node.js application where I use Redis, I am trying to connect the Docker container and the locally running Redis. Tried solutions: vim /usr/local/etc/redis.conf Updated bind 127.0.0.1 To...
Aude asked 31/1, 2020 at 9:30

7

Solved

I have a laravel (5.3) app with redis used for sessions (using predis). Everything works as long as I use a single redis node (using default approach from config/database.php). As soon as I switch ...
Tithable asked 11/12, 2016 at 20:59

4

Solved

I get the deprication warning, that Redis.hmset() is deprecated. Use Redis.hset() instead. However hset() takes a third parameter and I can't figure out what name is supposed to be. info = {'user...
Planetary asked 15/5, 2020 at 18:47

5

Solved

According to this link, persistence of redis instances can be prevented by setting --save ''. However when I try to use that argument in my docker-compose.yml the redis instance still loads a datab...
Fetid asked 5/2, 2019 at 11:22

40

How do I run Redis on Windows? The Redis download page just seems to offer *nix options. Can I run Redis natively on Windows?
Wooded asked 25/6, 2011 at 9:23

11

Solved

I installed Redis version 4.0.9 in a Ubuntu Linux Subsystem on Windows 10 by following these instructions (i.e. sudo apt-get install redis-server). I am following this tutorial on Django channels, ...
Scummy asked 8/7, 2020 at 3:14

1

Solved

I have created a Redis MemoryDB cluster with 2 nodes in AWS: I connect to it using redis node library v4.0.0 like this: import { createCluster } from 'redis'; (async () => { const REDIS_USERNA...
Obstructionist asked 21/1, 2022 at 10:13

4

I have written the following Lambda function: exports.handler = (event, context, callback) => { const redis = require('redis'); const redis_client = redis.createClient({ host: 'hostname', p...
Peppi asked 17/10, 2017 at 15:21

© 2022 - 2024 — McMap. All rights reserved.