redis Questions

7

Solved

I can't figure out how to connect to my redis service from my app service. Using DDocker version 18.03.1-ce, build 9ee9f40ocker for Mac. I've tried connecting the various ways I've found on similar...
Tijuana asked 12/6, 2018 at 13:13

5

Solved

I am using redis and trying to open CLI of redis using this: $redis-cli -h 127.0.0.1 -p 6379 -a mysupersecretpassword and getting and error : (error) NOAUTH Authentication required why so ?...
Totaquine asked 2/3, 2016 at 11:8

3

Solved

The time command gives me a list, and I'm not able to get the first element in it using any normal list commands. redis 127.0.0.1:6379> time 1) "1375802172" 2) "168215" redis 127.0.0.1...
Patency asked 6/8, 2013 at 15:41

2

Solved

I would like to load one script into redis that will export functions that future scripts executed will depend on, but attempt to define global function fails, same goes for global variables: redi...
Spoiler asked 15/11, 2013 at 9:27

6

Solved

I have URL and PORT of remote Redis server. I am able to write into Redis from Scala. However I want to connect to remote Redis via terminal using redis-server or something similar in order to make...
Corticate asked 18/11, 2016 at 13:54

4

Solved

What are the implications of disabling gossip, mingle, and heartbeat on my celery workers? In order to reduce the number of messages sent to CloudAMQP to stay within the free plan, I decided to fo...
Bono asked 19/3, 2019 at 20:6

3

Solved

In redis, how do I delete one key and get its value at the same time, and, most important, it is executed in one command so it is thread safe.
Glyph asked 5/12, 2017 at 8:47

3

Solved

I have installed redis. The default given name to me is plinking-narwhal. Now I would like to install a service with my assigned name. But first I want to remove the existing one. I had tried delet...
Shred asked 7/3, 2019 at 5:7

3

Solved

I am currently implementing redis PUB/SUB in one of my project, and it raises a concern to me, what's the size limitation of a message when PUB/SUB in Redis channel. Was the limit equal to the avai...
Subantarctic asked 21/4, 2021 at 19:4

6

Solved

I have downloaded redis-2.6.16.tar.gz file and i installed sucessfully. After installed i run src/redis-server it worked fine. But i don't want manually run src/redis-server everytime, rather i wa...
Mesomorph asked 14/6, 2014 at 15:27

5

I installed redis using chocolaty. Then, It was working normally, however I cannot start it again. Running redis-server: reports a problem in config file Specifying Config File Running the c...
Rafe asked 29/12, 2016 at 17:38

4

Solved

I am new in the JS world, I am creating a query cache and I decide to use redis to cache the information, but I want to know if there is a way to use async/await keywords on the get function of red...
Assignor asked 2/1, 2020 at 0:28

5

I am running Redis on Windows and have not been able to run it using the config file. I tried running: redis-server 'filepath'/conf/redis.conf but I get the error saying "redis fatal error c...
Nally asked 10/4, 2017 at 17:21

6

I have Redis running inside of a docker container. docker run --rm -d --name "my_redis" redis I'd like to access it via CLI: If I run docker exec -it my_redis redis-cli the console becomes unres...
Quantify asked 15/1, 2019 at 19:33

3

Solved

Working in an application that stores entities in redis as a serialized binary blob. I have multiple clients working on the same data set and I wish to use optimistic concurrency. My requirements ...
Convoke asked 14/11, 2011 at 12:11

4

I am using spring-data-redis for caching data in my spring boot app. I am using Mongo as my primary data source and Redis as a cache. When I hit the API for the first time, it fetches record from M...
Slater asked 27/2, 2018 at 19:19

3

Solved

I am saving new entries with a Spring Data Repository. I have a TTL of 10 seconds for each entry. When I save an entry with indexes, here is what i get in Redis 127.0.0.1:6379> keys * 1) "job...
Tibetoburman asked 17/1, 2017 at 9:46

5

I am trying to implement redis using the packages : "CacheModule" and "cache-manager-redis-store". The latter brings me a type error when assigning it to the store property of t...
Lacerated asked 29/11, 2022 at 23:24

5

Solved

I am using Redis cluster version redis-5.0.5. I want to see all the keys present in my Redis cluster. I know for standalone we use KEYS * to get all the keys. what is the way to see all keys in R...
Fable asked 28/8, 2019 at 10:50

3

My program needs to add data to two lists in Redis as a transaction. Data should be consistent in both lists. If there is an exception or system failure and thus program only added data to one list...
Chaiken asked 20/9, 2016 at 4:50

3

We are currently using memcache for storing session data. I have heard that memcached or redis are better. I need to understand what is the difference between them? in order to understand which one...
Xylon asked 17/10, 2013 at 10:26

3

I am using redis-py 2.10.6 and redis 4.0.11. My application uses redis for both the db and the pubsub. When I shut down I often get either hanging or a crash. The latter usually complains about a ...
Marillin asked 22/10, 2019 at 13:6

2

Solved

I have RedisInsight v1.2.2 installed, and today I got prompted to upgrade to v1.3.0. The problem is that the upgrade/install process tries to remove the older version (1.2.2) and needs the .msi I ...
Canzona asked 9/4, 2020 at 17:30

5

Solved

I have a long text file of redis commands that I need to execute using the redis command line interface: e.g. DEL 9012012 DEL 1212 DEL 12214314 etc. I can't seem to figure out a way to enter t...
Winstonwinstonn asked 30/5, 2012 at 19:22

6

Solved

I am using predis, it's subscribed to a channel and listening. It throws the following error (below) and dies after 60 secs exactly. It's surely not my web servers error or its timeout. There is a ...
Prospect asked 2/8, 2012 at 10:58

© 2022 - 2024 — McMap. All rights reserved.