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
0
votes
2 answers

URI::InvalidURIError: bad URI(is not URI?): heroku redis error

Am trying to push my rails app on heroku, am using the heroku RedisToGo add-on i have gone through this tutorial and gone through all the steps mentioned out there. But am getting this error while pushing on heroku: remote: rake…
Ahmed Reza Siddique
  • 383
  • 1
  • 6
  • 20
0
votes
1 answer

clojure carmine redis connection errors

I've been plagued for a week with connection errors whenever I run my code outside of my local machine. The connection errors are because carmine is connecting to localhost, no matter what I do. Here is the full output from a repl session, from my…
0atman
  • 3,298
  • 4
  • 30
  • 46
0
votes
1 answer

Heroku Redis cant open connection

I following Ryan Bates tutorial ActionController Live, and deploying app at heroku. All works fine, except events, where Ryan sad that we should reopen the redis connection, and I cant do it. I using RedisToGo to perform redis on heroku. Here my…
jealrockone
  • 97
  • 1
  • 9
0
votes
0 answers

error duplicate key value violates unique constraint "index_users_on_email" maybe Clean up cached deleted records on heroku using redis

I deleted a User record in rails console and it is still throwing a uniq key violation when I try to add a user with the deleted user's email. I feel like Redis To Go on heroku might have cached that user (I am not very familiar with caching) and…
NothingToSeeHere
  • 2,253
  • 5
  • 25
  • 57
0
votes
1 answer

BROKER_URL in Redis Cloud in Heroku

Im working with Redis on Heroku, Im trying RedisToGo and Redis Cloud, I need to get the URL of the DB to put it in BROKER_URL in the settings of my django app. RedisToGo gives me clearly the URL in the dashboard, but Redis Cloud does not. Somebody…
dfrojas
  • 673
  • 1
  • 13
  • 32
0
votes
1 answer

Error creating two Redis To Go clients in NodeJS on Heroku

I've got a single web dyno running on a Heroku app that's built using NodeJS and it's using a single Redis To Go database on the Nano (free) tier. That tier is supposed to support up to ten connections, yet if I try to connect to it in two different…
Matt Lacey
  • 8,227
  • 35
  • 58
0
votes
1 answer

Resque 2.0 on Heroku

I want to be able to run Resque 2.0 with Heroku and Rails but there doesn't seem to be any good tutorial/documentation about it. It seems I might need something like RedisToGo but not sure whether it is a good practice to use without it or not. I'm…
Passionate Engineer
  • 10,034
  • 26
  • 96
  • 168
0
votes
1 answer

Heroku: Setting up redis and redisco with flask connection error

I am trying to set up redis while using flask on heroku, I added the redistogo add on via heroku. It looks like my redistogo instance is running on port 9456: redis://redistogo:asdfasdf:9456 I tried configuring redisco's port like so:…
user1532761
  • 29
  • 1
  • 7
0
votes
1 answer

redisClient.set :- no update no error

redisClient.get('abc', function(err, abcValue){ console.log(abcValue); abcValue = abcValue + 'id'; redisClient.set('abc', abcValue, function(err){ console.log('abc updated'); }); }); nested updation over network, prints 'abc updated', but…
Sangram Singh
  • 7,161
  • 15
  • 50
  • 79
0
votes
1 answer

connecting to redistogo gives error:-

Trying to connect to redis thru the following redistogo credentials gives error. var redisClient = require('redis').createClient({ host: 'birdeye.redistogo.com', port: 1222, db: 'redistogo', pass: '012345c2f2402f7878588dd5fb129' …
Sangram Singh
  • 7,161
  • 15
  • 50
  • 79
0
votes
0 answers

connecting to RedisToGo on Heroku thru Nodejs

I am connecting to redis on localhost using:- var redisClient = require('redis').createClient({ host: 'localhost', port: 6379, db: 0, pass: 'RedisPASS' }); How do i connect to RedisToGo on heroku. I'm using node.js I have…
Sangram Singh
  • 7,161
  • 15
  • 50
  • 79
0
votes
1 answer

Where are my redis clients being used?

I have a Rails 3 app hosted on heroku which at the moment has only one web and one worker dyno. I recently started using Redis as caching database too so I'm performing actions like this (using the redis-rb gem): redis = Redis.new(:host => host,…
Gerard
  • 4,818
  • 5
  • 51
  • 80
0
votes
1 answer

Redis works on console, but fails in application

I'm using Redis with split gem in a RoR application hosted on Heroku. I've configured it with RedisToGo using the following codes: /config/initializers/redis.rb uri = URI.parse(ENV["REDISTOGO_URL"] || "redis://localhost:6379/" ) REDIS =…
João Daniel
  • 8,696
  • 11
  • 41
  • 65
0
votes
0 answers

Redis on Heroku

I am using Redis Objects with Redis To Go on Heroku. I have a counter on a model, like this: class Performance < ActiveRecord::Base include Redis::Objects counter :tickets_sold, start: 0 end Accessing this value from Heroku console is working…
picardo
  • 24,530
  • 33
  • 104
  • 151
0
votes
1 answer

Restore a Redis To Go DB on Heroku

Has anyone been able to restore a Redis DB on Heroku? They have instructions for regular accounts, but the "Edit" option is not available through the Heroku dashboard. http://support.redistogo.com/kb/info/restore-from-a-backup
Arrel
  • 13,558
  • 7
  • 26
  • 24