Questions tagged [redistogo]

Simple Hosting for the Redis key-value store.

Redis To Go is the creation of James and Jon Bracy of Bracy Enterprises, LLC, where Redis has been used for several projects.

Redis To Go was created to make the managing Redis instances easier, whether it is just one instance or serveral. Deploying a new instance of Redis is dead simple, whether for production or development.

Also availabe as an heroku addon :

62 questions
2
votes
1 answer

how to allow a worker to run a ffmpeg command on heroku for my python/django app?

I've been stuck trying to figure this out for weeks. I previously asked a similar question found here but I never got any replies. I really cannot find any good documentation anywhere. All I need to do is use a worker (don't care what worker have…
GetItDone
  • 566
  • 7
  • 22
1
vote
0 answers

Django including Redis To Go on Heroku

I have spend the last couple of days trying to set this up for my website and have been failing to understand this particular error. I used the Django Cookiecutter boiler tamplate for my project. I have added Celery locally with Redis to perform…
jackygab
  • 58
  • 6
1
vote
0 answers

rails app not connecting to redis on heroku (RedisToGo)

am trying to push my rails 4 app on heroku but getting this error: Error connecting to Redis on 127.0.0.1:6379 (ECONNREFUSED) (Redis::CannotConnectError) on heroku logs, i have completed the RedisToGo setup as suggested by the heroku devcenter but…
Ahmed Reza Siddique
  • 383
  • 1
  • 6
  • 20
1
vote
1 answer

How to get client addr from redis?

I am testing Redis in heroku. I have simple flask app that can create the redis client and kill the client but ... @app.route('/client-status') def client_status(): redis.client_setname("first") redis.client_kill('addr') #10.157.2.68:60097 …
user4374121
1
vote
2 answers

Redis server version for RedisToGo on Heroku

I am using the RedisToGo add-on on heroku. How can I get the redis server version being used?
gagan
  • 191
  • 1
  • 7
1
vote
1 answer

Redis/Resque [Error connecting to Redis on localhost:6379 (ECONNREFUSED)]

I'm trying to connect my rails application to a redis-to-go server with Resque but i'm gettin the error: Error connecting to Redis on localhost:6379 (ECONNREFUSED) I tried a lot of possible solutions but any of them worked. I follow all the…
FxckDead
  • 408
  • 6
  • 16
1
vote
0 answers

call': ERR Invalid IP address in MEET (Redis::CommandError) Redis

When i excute the redis cluster command fr first time i am getting below error >>> Performing hash slots allocation on 2 nodes... M: a644f0c711c6a7a455f4154682beb0866df0c1e5 10.1.0.164:1234 slots:0-8191 (8192 slots) master M:…
Suresh
  • 1,199
  • 2
  • 12
  • 36
1
vote
1 answer

How do I monitor redistogo logs?

I have a Rails app on Heroku using RedisToGo with gem redis. How do I do something similar to: $ redis-cli monitor but on RedisToGo?
botbot
  • 7,299
  • 14
  • 58
  • 96
1
vote
0 answers

How to make redistogo work on heroku?

My Django development website with background processing via redis works locally, but doesn't work on heroku. My requirements.txt contains 'redis==2.7.2' and 'rq==0.3.2' and I spin up web=1 and worker=1 on heroku. I have the 'redistogo:nano'…
1
vote
1 answer

Sharing a Redis database?

I'm using Redis as a session store in my app. Can I use the same instance (and db) of Redis for my job queue? If it's of any significance, it's hosted with redistogo.
trebuchet
  • 1,483
  • 9
  • 14
0
votes
0 answers

Python Worker On Heroku Api

I am building an API on heroku using python and flask I am currently sending a post request and then the worker takes the parameters and starts processing and return the json response when it finishes The question is how do I wait for the worker to…
0
votes
1 answer

Running RQScheduler with Flask App on Heroku

I'm trying to run RQscheduler on a Flask app hosted on Heroku with RedisToGo. I have set up a worker.py file as follows import os import redis from rq import Worker, Queue, Connection listen = ['high', 'default', 'low'] redis_url =…
0
votes
2 answers

Concurrency within redis queue

I'm working with a django application hosted on heroku with redistogo addon:nano pack. I'm using rq, to execute tasks in the background - the tasks are initiated by online users. I've a constraint on increasing number of connections, limited…
Ronnie
  • 992
  • 1
  • 9
  • 25
0
votes
1 answer

Redis on heroku without RedisToGo add-on

Can we use redis on heroku for background jobs with python without using RedisToGo add-on. Any pointer please. I've this error while following this https://devcenter.heroku.com/articles/python-rq post without using RedisToGo add-on app[worker.1]:…
Tushar Soni
  • 115
  • 1
  • 12
0
votes
0 answers

Heroku Sidekiq: Redis connection either too low or max number of clients reached

I am running sidekiq workers task and using redis to go nano on heroku. My sidekiq.yml looks like this: Sidekiq.configure_client do |config| config.redis = {size: 1, db: 0, url: ENV["REDISTOGO_URL"] ||…
Saurav Prakash
  • 1,177
  • 1
  • 11
  • 25