Category "redis"

Data fails to update in Redis on Azure

In order to be able to load the order list pages of our application quickly, we are trying to push orders as soon as they come in to our application to Redis. T

How to use ActionCable with redis server hosted on redislabs.com?

I am trying to set up a rails app with actioncable, where it's using a redis database hosted on app.redislabs.com. I am having trouble getting the connection to

automatically remove items of a list every few second in redis

I'm trying to see how many users used my bot in the last 5 minute. I've got an idea to every time a user used my bot I add his/hers id into a redis list with a

How to do redis caching in my NodeJs lambda

I am trying to make a chat app. What I want to attain is that, for a particular session, the chats are chached in redis. Once the session is over, I will take t

Springboot docker-compose redis Cannot get Jedis connection;

This may seems as duplicate of docker-compose with springboot and redis and docker-compose redis connection issue but the solutions proposed there are not worki

Laravel Horizon internal server error on 'horizon/api/*'

I tried to implement Horizon, from the terminal when I run commands like php artisan horizon:status or php artisan horizon:list I get positive feedbacks, everyt

Django celery and heroku

I have configured celery to be deployed in heroku, all Is working well, in fact in my logs at heroku celery is ready to handle the taks. Unfortunately celery do

Can I modify a failed Laravel (redis/horizon) job payload before retrying?

Locally, I use the database queue driver, but on production, we use Redis with Horizon. Recently, I noticed a job failed due to a tiny issue in the payload (a s

set Domain on cookie using spring security when login success

How can I set the property "domain" on the users cookie when the user has authenticated from spring? Edit: id like to add domain=".mydomain.com" to cookie with

Reactive Redis only one thread is used in a webflux service

In a Webflux server, detect function first looks up 2 redis hash value, and then do a heavy CPU calculation using the redis returned value, and then save result

redis delete does not delete the key

In my redis database I have a key: 127.0.0.1:6379[5]> get "263384DB-61DD561800016316-240C0700" "{\"json\":{\"created\":\"1641895448090335\",\"last_signal\":

Redis sentinel can not run in k8s with environment variables in config file

I try to run a redis sentinel in k8s pod and it show: *** FATAL CONFIG FILE ERROR *** Reading the configuration file, at line 27 >>> 'sentinel

Reusing Redis Connection: Socket Closed Unexpectedly - node-redis

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 RD

redis scanIterator configuration

I am using the latest redis npm package and I'm trying to iterate through all the keys using the scanIterator(). Is it possible to configure the iterator to MAT

Error when parsing redis aggregation reply. redigo: unexpected element type for Strings, got type []interface {} on reply position 4

I use redigo to use redis in golang I have tried to use group with reducerTOLIST but I got the following error: Error parsing Aggregate Reply: redigo: unexpect

Unable to connect to Redis; nested exception is org.springframework.data.redis.connection.PoolException: Could not get a resource from the pool;

My Spring boot app hosted in AKS Azure, while hitting the redis cache in Azure, getting Unable to connect to Redis; nested exception is org.springframework.data

How to fetch redis cli set json and fetch from Get Api Spring boot redis?

I want response from redis cli to postman as this http://localhost:8585/api/home/getBestTrainerBasedRating [ { "trainerid": 28, "rating": 5.

Redis: single big hash vs many keys

I have some data which has million key-value pairs. So which way is better to store them in redis, single key with super big hash which has million key-value pa

Where is node-redis v4 documentation/migration guide?

node-redis refactored its API in v4 to support Promises. For some reason, they also decided to change the signature of most commands, which now don't obey any a

Creating db tables with SQLAlchemy and running Celery tasks raises "error with status PGRES_TUPLES_OK and no message from the libpq"

I have an application that runs 2 tasks every minute. Both of them have almost the same code, except for the API endpoint they communicate with (see below). Whe