redis Questions

3

Solved

I'm trying to understand MONITOR command that is available in Redis and how can I use effectively to determine the load of my application. What I don't understand is how do I read the information t...
Airframe asked 9/12, 2014 at 3:3

3

Solved

I am using jedis 2.8.0 and getting following exception: Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set at redis.clients.jedis.Protocol....
Fearful asked 16/6, 2017 at 21:32

4

Solved

I'm using Resque workers to process job in a queue, I have a large number of jobs > 1M in a queue and have some of the jobs that I need to remove ( added by error). Crating the queue with the jobs ...
Wieldy asked 23/4, 2012 at 4:53

1

I use redis replication(one master with port 6379, two slave with port 6380, 6381), I've not found anything in the laravel doc for config redis replication. I use below config(from gpt's answer), b...
Franfranc asked 28/5 at 7:32

4

I am trying to execute the container named redis which is running right now.But the error Could not connect to Redis at redis:6379: Name or service not known. Any one please hell me to figure out t...
Stand asked 15/10, 2015 at 7:14

6

How can i check the availability of Redis connection in Laravel 5.4. I tried below code, but getting an exception with ping line. How can i do, if Redis is not connected than do something else to a...
Demona asked 9/8, 2017 at 6:14

4

Solved

When no password is set, we can issue for instance; >> redis-cli keys * or >> redis-cli config set requirepass "aaaaaa" However, after we have have issued the latter, the f...
Meanly asked 9/2, 2021 at 10:38

3

I want to build a basic global (no rooms) chat with laravel / node / redis using websockets. I followed this tutorial: http://blog.nedex.io/laravel-5-1-broadcasting-events-using-redis-driver-sock...
Corydon asked 15/1, 2016 at 12:46

7

Solved

I have been searching and tried multiple solution but could got any helping results, I want to clear/delete all keys matching pattern products:*. Following are the things i have tried. Redis::d...
Depressor asked 22/10, 2019 at 14:1

12

redis-server wont work in the server i have nginx, apache, php and mysql is there any package can cause the problem below PS: this error when i'm installing BBB https://github.com/bigbluebutton/bb...
Dietrich asked 5/4, 2018 at 10:34

6

Solved

I am getting connection Error: connect ECONNREFUSED 127.0.0.1:6379 while working with docker-compose to use Redis with node js. I used the same host name and service name in Redis but still got an ...
Pettifogging asked 2/4, 2022 at 12:6

3

I try to use redis for http session data replication. My Use case is as follows: We have 2 indepentent datacenters(RZ and RR) each of them has 4 tomcat servers. I have installed redis cluster with...
Herculie asked 21/8, 2017 at 10:3

6

Solved

First, let me tell you how I'm using Redis connection in my NodeJS application: I'm re-using one connection throughout the app using a singleton class. class RDB { static async getClient() { i...
Platy asked 22/3, 2022 at 15:34

7

Currently I have the below service configured in my docker-compose which works correct with redis password. However, I would like to use also redis username together with password. Is there any sim...
Wendiewendin asked 21/1, 2022 at 21:15

2

Solved

I have what seems like a very strange issue that I hope someone has hit before. I have a docker-compose file that houses a service for redis. Nothing special, I just grab the latest redis from dock...
Haug asked 24/4 at 19:41

4

Solved

This will be my first time connecting Spring to Redis. The documentation for jedis connection factory: http://www.baeldung.com/spring-data-redis-tutorial Offers the following code: @Bean JedisCo...
Exsanguine asked 28/2, 2018 at 4:28

1

I have an API build with FastAPI which endpoint submits a task to a celery worker, waits for worker to finish its job and return a result to the user. Question is what is the correct way to wait th...
Inscription asked 14/2, 2021 at 13:56

5

I am using npm bull to add my queue job to handle about sending mail for my project. It runs no problems for a long time, but recently, it shows this error: Error while handling task collect-metric...
Jeff asked 18/4, 2022 at 7:0

4

Solved

Question title may be little confusing, I tried my best to explain it. I've got laravel-echo-server, redis (for queueing), and Laravel echo set up. All I want is to send a message via an input, a...
Somnambulation asked 28/11, 2016 at 23:5

4

Solved

So for example: Foo : Bar Could also be looked up as FOO, foo, fOO etc?
Messmate asked 15/7, 2011 at 16:12

3

I had a bunch of jobs in bull queue when one got stuck for 1+ hours (normally takes ~2 minutes to run), but didn't fail. I was unable to remove the job from the active state with the bull arena UI ...
Abiding asked 29/4, 2020 at 14:21

6

I have followed the instructions to install resque, but now when I try to spawn a worker with this command I get a connection error: $ QUEUE=mailer rake environment resque:work --trace this is ...
Assyria asked 12/1, 2011 at 14:45

2

ERROR:Factory method 'elasticsearchClient' threw exception; nested exception is java.lang.IllegalStateException: availableProcessors is already set to [4], rejecting [4] I just want to use redis ...
Beaton asked 4/9, 2018 at 12:35

5

I want to flush out all keys older than 3 months. These keys were not set with an expire date. Or if that is not possible, can I then delete maybe the oldest 1000 keys?
Allotropy asked 13/5, 2013 at 8:11

1

There is a SpringBoot (v2.2.7) application, where a Redis cache is configured fragment of pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spri...
Finitude asked 10/7, 2020 at 5:29

© 2022 - 2024 — McMap. All rights reserved.