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
19
votes
3 answers

sidekiq does not generate sidekiq.pid file on heroku, using with Redistogo

I've been struggling for two days with getting sidekiq work on heroku production environment. I've read all the available documentation about similar issues, and still haven't been able to produce a working solution, I'd really like some help! After…
Stephens
  • 537
  • 5
  • 13
14
votes
3 answers

Redis Queue + python-rq: Right pattern to prevent high memory usage?

we are currently using Redis to Go with our Heroku-hosted Python application. We use Redis with python-rq purely as a task queue to provide for a delayed execution of some time-intense tasks. A task is retrieving some data from a PostgreSQL database…
karlheinz_sch
  • 490
  • 4
  • 11
14
votes
2 answers

How to connect to redistogo? How to see the data?

Read through https://redistogo.com/documentation/introduction_to_redis?language=en but couldn't get it to work. redis-cli -h my-host -p 1234 -a mypassword What is my-host? How to see the database? The web console seems to not display all the data.…
B Seven
  • 44,484
  • 66
  • 240
  • 385
12
votes
1 answer

What does 'Non-persistent' mean with Heroku's Redis To Go Nano plan?

I recently signed up for Heroku's Redis To Go https://addons.heroku.com/redistogo. For now, I'm using the free Nano plan, which says: 5 MB Redis Instance 1 Database Non-persistent No Backups 10 Connections I get what 'No Backups' etc. mean, but…
szeryf
  • 3,197
  • 3
  • 27
  • 28
9
votes
1 answer

Maximum clients reached on Heroku and Redistogo Nano

I am using celerybeat on Heroku with RedisToGo Nano addon There is one web dyno and one worker dyno The celerybeat worker is set to perform a task every minute. The problem is: Whenever I deploy a new commit, dynos restart, and I get this error…
JV.
  • 2,658
  • 4
  • 24
  • 36
9
votes
2 answers

Recover from dropped connection in redis pub/sub

I am running client that is connecting to a redis db. The client is on a WiFi connection and will drop the connection at times. Unfortunately, when this happens, the program just keeps running without throwing any type of warning. r =…
Alexis
  • 23,545
  • 19
  • 104
  • 143
7
votes
2 answers

RQScheduler on Heroku

I'm trying to run rqscheduler with django-rq on Heroku with RedisToGo. I've implemented django-rq as described in their readme (https://github.com/ui/django-rq). I have a worker that starts an rqworker, and another worker that starts up rqscheduler…
user2155400
  • 589
  • 5
  • 16
5
votes
3 answers

Setting up Redis To Go with Heroku and Rails 4.0.0

I am attempting to setup Redis To Go on my Rails 4 app. I want to be able to deploy it to Heroku as well. So far, this is what I've done: Through the dashboard.heroku site, I used the one click install for the Nano version of Redis To Go to install…
Luigi
  • 5,443
  • 15
  • 54
  • 108
5
votes
1 answer

Is it possible for two apps on the same heroku account to access the same RedisToGo Server?

Is is possible for two apps on the same heroku account to access the same RedisToGo Server? We have two apps that both need web access but have very different structures. So they can't be dyno types in the same app - but it would be really nice if…
Eman
  • 53
  • 3
5
votes
1 answer

Redis on Heroku Sharding

I'm evaluating possibility of using heroku plus RedisToGo addon. I've read that there is a possibility to set up standalone redis cluster with sharding and replication. However in heroku documentation I see examples of JedisPool usage instead of…
Mairbek Khadikov
  • 7,939
  • 3
  • 35
  • 51
4
votes
0 answers

max number of clients reached if more than 4 workers redistogo nano heroku

I know this question is already answered in here , but where did he get that >= 5 redis connections will trigger a max connection error. This on heroku link it says max connections equals to 10. And I never seen in the documentation that there is a…
rap sea
  • 463
  • 1
  • 5
  • 8
4
votes
2 answers

Heroku Error: ArgumentError: invalid uri scheme ''

I'm trying to get my Rails app to process background jobs with Sidekiq and to connect Sidekiq with redis-to-go on Heroku. Here's my Procfile: web: bundle exec puma -C config/puma.rb worker: bundle exec -C config/sidekiq.yml Here's my the…
Jarrel09
  • 335
  • 2
  • 17
4
votes
1 answer

Scaling to 2+ dynos on Heroku with socket.io-redis and RedisToGo

I'm trying to use socket.io-redis to scale my app on Heroku to 2 dynos (or more). Here is my code (where config.redis is just an object housing RedisToGo port, host, and pass values): var redisApp = require('redis'); var redis =…
4
votes
1 answer

How to estimate how large a redis database will be?

I'm trying to decide what size Redis To Go option to go for in heroku. Say that I want to keep about a million records in Redis for easy access. If each record is about 1-10kb in size, does this mean that the entire database will be 1,000,000 *…
dsp_099
  • 5,801
  • 17
  • 72
  • 128
4
votes
3 answers

How to copy RedisToGo database in Heroku to local machine?

I have a node.js app, using RedisToGo and running in Heroku. I would like to copy the Redis To Go database to localhost for testing. When developing Ruby on Rails app, I can use heroku db:pull command. Is there any similiar command which I can use…
Victor Lam
  • 3,646
  • 8
  • 31
  • 43
1
2 3 4 5