Skip to content

Instantly share code, notes, and snippets.

@rujmah
Forked from nono/redis2txt.rb
Created April 9, 2013 14:54
Show Gist options
  • Save rujmah/5346351 to your computer and use it in GitHub Desktop.
Save rujmah/5346351 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require "redis"
redis = Redis.new
redis.keys("*").each do |key|
val = case redis.type(key)
when "string"
redis.get key
when "list"
redis.lrange key, 0, -1
when "hash"
redis.hgetall key
when "set"
redis.smembers key
when "sortedset"
redis.zrange key, 0, -1
else
"unknown"
end
puts "#{key}: #{val}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment