Skip to content

Instantly share code, notes, and snippets.

@hiroara
hiroara / analysis.rb
Last active November 17, 2020 06:33
Analyze Redis data usage
#!/usr/bin/env ruby
require 'csv'
class Level
attr_reader :key, :parent, :bytesize, :total_bytesize, :children
def initialize parent, key, bytesize = 0
@parent = parent
@key = key