1

I am using the RedisToGo add-on on heroku.

How can I get the redis server version being used?

gagan
  • 191
  • 1
  • 7

2 Answers2

3

Using the INFO command in redis-cli will give this information.

For my situation: In my rails app have a constant called REDIS that is initialized as a Redis client. Doing a REDIS.info gave me the required information.

gagan
  • 191
  • 1
  • 7
1

They say explicitly on their site:

All new RedisToGo instances run with 2.8.9 as default. If you have an existing instance and need your version upgrading then please drop us a line and we’ll get you set up.

Eli
  • 36,793
  • 40
  • 144
  • 207