redis Questions
5
I recently installed OSX and Ubuntu on different computers. I then attempted to install redis and foreman for both OS's. Both errors threw no flags, and seemed to execute successfully. However, whe...
Stegodon asked 12/6, 2014 at 6:8
5
Solved
I am new to Reactive Programming. i need to connect to Redis to save and get some data. The redis instance is present in cloud.
Am using Lettuce Connection factory to establish the connection.
whe...
Cymry asked 26/3, 2020 at 17:5
5
Solved
I'm switching over from a heroku addon to a direct redis cloud account and am a bit puzzled on how to generate the redis url with the auth info.
The old heroku add-on url was in the format of redi...
Pipistrelle asked 3/6, 2017 at 13:50
3
Solved
I am using golang as my backend.I am storing some token values in redis.I m setting the values HSET and getting the values in HGETALL.I would like to know if there is any function to set the expiry...
2
I have several services in Azure and i would like to sync changes between them using some kind of pub/sub service.
I am looking into Redis and Azure Service Bus.
The data to be synced is ve...
Perretta asked 1/2, 2016 at 2:2
1
I've written redis-cli bash script to process all key and value for bulk retrieval but values are not printing as expected. When I give my key in redis-cli its printing with all special characters:...
3
I am trying to connect to cluster Redis with a valid URL and port I got this error:
Caused by: io.lettuce.core.RedisCommandExecutionException: ERR This instance has cluster support disabled
at io....
Outgrowth asked 18/11, 2020 at 15:5
8
Solved
In my setup, the info command shows me the following:
[keys] => 1128
[expires] => 1125
I'd like to find those 3 keys without an expiration date. I've already checked the docs to no avail. ...
Industrialism asked 22/3, 2012 at 7:18
7
Solved
I've been playing with redis (and add some fun with it) during the last fews days and I'd like to know if there is a way to empty the db (remove the sets, the existing key....) easily.
During my te...
12
Solved
I got error NOAUTH Authentication required when I connect to Redis server via command: redis-cli and run ping to check if Redis is working.
I found answer for NOAUTH Authentication required error ...
Ebon asked 6/12, 2015 at 7:48
7
Solved
I need to install redis in amazon cloud. I need it as a part of my npm module kue (deployment). Can anyone link me step by step tutorial or explain how to do it, considering the fact that I'm not g...
Adaptation asked 29/12, 2014 at 13:48
2
Solved
I am trying to get redis working in my Laravel project on Mac.
Here is what I did so far:
1) I ran "composer require predis/predis" succesfully
2) I can see the predis folder in vendor folder
3...
3
I have set up Redis in my environment, and have only seen a section for authorizing via a password. Is there a way to set up a username too? Or is it only authenticated via password?
2
Solved
Running the command redis-server it returns:
The server is now ready to accept connections on port 6379
Trying to connect in my browser localhost:6379 I get this message:
Possible SECURITY ATTAC...
Irremissible asked 4/5, 2017 at 17:13
3
Solved
I am getting error NOAUTH Authentication required.
My laravel version is 5.3 and I am using predis 1.1.1 to connect redis.
in etc/redis/redis.conf I have:
bind 127.0.0.1
requirepass somepassword
...
Saxophone asked 27/2, 2017 at 10:9
17
Solved
I'm working with redis on my local machine so I dont really need to set up a password to connect to the server with my php client (I'm using predis as a client). However, I'm moving my app to a liv...
21
Solved
I have a Linux server with Redis installed and I want to connect to it via command line from my local Linux machine.
Is it possible to install redis-cli only (without redis-server and other tools)...
4
Solved
I am using Redis hash set to store data in the following format:
hset b1.b2.b3 name test
Now I want to delete this key so I am using the following format:
del b1.b2.*
But it not working so how I ...
Psychotic asked 31/1, 2021 at 19:32
2
I was wondering if it is worth caching queries like:
SELECT * FROM users WHERE id = 1
If not, then the same should also be the case for complex queries, since they will be cached by the DB cache ...
2
My application is written in django f/w which uses celery and redis for asynchronous tasks. I would like to autoscale workers according load/no.of messages in queue. For this, I would like to make ...
Proverbs asked 27/3, 2020 at 19:57
7
Solved
I am using a redis-server:latest image. I used "docker run -it --name="redis2" redis:1 bash" command and got inside the container. I saw that by default redis is listening to Port: 6379.
Running i...
5
I am using laravel 8, and it is throwing error, when ever I tried to run:
php artsian config:clear
On laravel, this is my config value (because I am trying to use phpredis):
'client' => env('RED...
6
Solved
I wish to install redis on my red-hat environment. I do the following:
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
I got the next error:
...
4
I am using redis version 3.0.6. The redis-server process is being run by the redis user.
Suddenly from 5 days after 24 hours redis began failing "opening .rdb for saving." It was working properly ...
Twentieth asked 24/5, 2017 at 4:51
1
Lettuce Core API has RedisClient class that contains these methods:
public StatefulRedisConnection<String, String> connect() {
return this.connect(this.newStringStringCodec());
}
public &l...
© 2022 - 2024 — McMap. All rights reserved.