Skip to content

Instantly share code, notes, and snippets.

@zautomata
Forked from nono/redis2txt.rb
Created November 9, 2017 09:10
Show Gist options
  • Select an option

  • Save zautomata/7876eb5dfcdfdb9f8d4091f7979674d6 to your computer and use it in GitHub Desktop.

Select an option

Save zautomata/7876eb5dfcdfdb9f8d4091f7979674d6 to your computer and use it in GitHub Desktop.
Export data from redis to a plain text files
#!/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