Questions tagged [heroku-redis]

47 questions
0
votes
0 answers

Heroku redis alerts

We using a Heroku Redis database. Recently, the memory filled up and we didn't receive a single notification or warning. Our eviction poliy is noeviction so writes to Redis started failing and our whole application came down. We've upgraded the…
Macgill4444
  • 244
  • 1
  • 12
0
votes
1 answer

Receiving a timeout error when trying to use Heroku Data Redis with Stackexchange.Redis

Receiving the following error when trying to retrieve data from Heroku Data Redis on a .Net Core app hosted on Heroku using Docker, the cache works locally but I'm getting this error message when deployed to…
Joe King
  • 21
  • 4
0
votes
0 answers

List of Config Vars automatically updated upon Redis rotation?

Referring to this support article, https://help.heroku.com/VN3D085X/why-have-my-heroku-redis-credentials-changed, where can I find the full list of config vars besides REDIS_URL that gets automatically updated whenever Heroku rotates my Redis…
michtan
  • 59
  • 1
  • 7
0
votes
1 answer

ActionCable and Heroku Redis configuration

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…
Rene Chan
  • 864
  • 1
  • 11
  • 25
0
votes
1 answer

Unable to connect to Heroku Redis from Node Server

Works well on connecting to Redis locally and through Official Redis Docker image. But, when I switch to Heroku Redis values for ENV variables. It is unable to connect. I have tried full url option as well, but that doesn't seem to work for any…
CodingBrah
  • 59
  • 8
0
votes
1 answer

Any calls to Heroku redis causes flask app to timeout

I've been developing a web app for the usage of computers and I'm attempting to store some information about active computers on redis. I'm hosting my Flask web app on Heroku and using Heroku redis. When I'm testing on my local machine using the…
Ethan Shapiro
  • 33
  • 1
  • 6
0
votes
1 answer

Connection error with Heroku Redis and Python

I'm trying to connect to my Heroku Redis instance (free/hobby dev version) using the URL. It seems to connect fine, but once I try any commands, it fails and gives: ConnectionError: Error while reading from MY_URL : 'An existing connection was…
Ethan Shapiro
  • 33
  • 1
  • 6
0
votes
1 answer

Heroku: python app works locally but does't on remote after git push

I'm trying to deploy a python app that supports redis and I'm currently facing a problem. I have two git branches, one for production and one for dev and two different heroku apps (python-app, dev-python-app). My git repos are: git…
gpprimo
  • 1
  • 1
0
votes
2 answers

Not able to connect to heroku redis

const redis = require("redis"); let client = redis.createClient({ host: process.env.host, port: process.env.port, password:process.env.password }); (async () => { client.on('error', (err) => console.log('Redis Client Error',…
0
votes
0 answers

Heroku Redis development with nodejs

I'm developing react app and ım using nodejs for backend. I deployed project on heroku and ı used heroku-redis. Now ı want to develop some features. How can ı work on local ? When ı tried, ı couldn't watch changing and also when ı working on local,…
bizimsiti
  • 78
  • 6
0
votes
2 answers

Use RedisDB with Express-Gateway. How to read DB credentials from .ENV?

I am using a Redis DB to use an Express-Gateway on Heroku. I would like to know how to set Redis credentials as a unique URL-param, instead of using separated vars. Right now, Express Gateway reads credentials from the file system.config.yml, where…
DeLac
  • 1,068
  • 13
  • 43
0
votes
0 answers

Rails.cache.exists?(key) is returning false

I have deployed Rails Application on heroku I am using Heroku-redis premium0 addon. I am checking if key exist in redis then fetch data from redis else call an API, But sometimes Rails.cache.exist?(key) is returning false even when the key exist in…
Puja Garg
  • 251
  • 3
  • 11
0
votes
1 answer

Connect to Heroku redis from a nestjs app

I am hosting my nestjs application on Heroku and trying to use "Heroku redis" add-on with it. In the app.module.ts I am importing RedisModule as follows: @Module({ imports: [ RedisModule.register({ host: process.env.REDIS_URL }) ] }) After…
Jacobdo
  • 1,681
  • 2
  • 18
  • 38
0
votes
1 answer

Using database for python telegram bot

I'm creating a bot using python-telegram-bot. I'm using a third party application in the bot and user have to login into that app to further use the bot commands, I've hosted the bot on heroku. Now the problem is, my heroku application sleeps after…
Karan
  • 41
  • 4
0
votes
2 answers

Issue Deploying Heroku App - RQ Worker: wrong number of arguments for 'HSET' command

Modifying an app based on this example, I am having a problem when deploying my updated Heroku app during initialization of the web.1 dyno. Everything is working fine in my development envr; when I start the 'app' and 'worker' executables directly,…