Issue I am looking for a way to connect the rails application to elastic cache for storing the cache. For testing purpose I try to test with redis-cli which is working fine. Is there any library or documentation available to
Continue readingTag: redis
[SOLVED] ActionCable and Heroku Redis configuration
Issue Last week RedisToGo was terminated on Herokum, leaving me with no choice but to find an alternative. I got a new subscription from Heroku: Heroku Redis. Everything seems to work fine (all tasks/jobs) except things related to ActionCable. [ActionCable]
Continue reading[SOLVED] Herkou Redis – certificate verify failed (self signed certificate in certificate chain)
Issue I have been using heroku redis for a while now on one of my side projects. I currently use it for 3 things It serves as a place for me to store firebase certificates It is used for caching
Continue reading[SOLVED] Docker – Celery cannot connect to redis
Issue Project structure: client nginx web/ celery_worker.py project config.py api/ I have the following services in my docker-compose: version: ‘3.6’ services: web: build: context: ./services/web dockerfile: Dockerfile-dev volumes: – ‘./services/web:/usr/src/app’ ports: – 5001:5000 environment: – FLASK_ENV=development – APP_SETTINGS=project.config.DevelopmentConfig – DATABASE_URL=postgres://postgres:[email protected]:5432/web_dev
Continue reading[SOLVED] Docker Compose Redis It was not possible to connect to the redis server(s). Error connecting right now
Issue I have tried dockerization asp.net 6, redis and postgresql with docker compose and I get the following error. The timeout was reached before the message could be written to the output buffer, and it was not sent, command=PING, timeout:
Continue reading[SOLVED] Celery beat + redis with password throws No Auth exception
Issue I am using celery and redis as two services in my docker setup. Configuration is as below: redis: image: redis:latest hostname: redis ports: – "0.0.0.0:6379:6379" command: –requirepass PASSWORD celeryworker: <<: *django depends_on: – redis – postgres command: "celery -E
Continue reading[SOLVED] Reading Redis Timeseries is slower than Pandas with CSV
Issue I’m using Redis Timeseries in order to read timeseries data that was previously stored in a CSV file. The problem: Redis is far slower than Python Pandas reading the same set of data from Redis Server. I provide here
Continue reading[SOLVED] Redis in cocker-compose: any way to specify a redis.conf file?
Issue my Redis container is defined as a standard image in my docker_compose.yml redis: image: redis ports: – "6379" I guess it’s using standard settings like binding to Redis at localhost. I need to bind it to 0.0.0.0, is there
Continue reading[SOLVED] Write kafka topic data to redis using docker
Issue I am using this repository kafka connect to redis. Explain: What I want to do is to write kafka topics data into redis using docker. They have created a readme file to instruct how to set the configuration of
Continue reading[SOLVED] Sidekiq Error connecting to Redis on 127.0.0.1:6379 (Errno::ECONNREFUSED) on docker-compose
Issue I’m trying to run sidekiq worker with Rails. When I try to docker-compose up worker I get the following error: worker_1 | Error connecting to Redis on 127.0.0.1:6379 (Errno::ECONNREFUSED) worker_1 | /home/app/Nyvur/vendor/bundle/ruby/2.2.0/gems/redis-3.2.2/lib/redis/client.rb:332:in `rescue in establish_connection’ worker_1 | /home/app/Nyvur/vendor/bundle/ruby/2.2.0/gems/redis-3.2.2/lib/redis/client.rb:318:in `establish_connection’
Continue reading