Skip to content

Instantly share code, notes, and snippets.

View lbornov2's full-sized avatar

Lev Bornovalov lbornov2

  • Prague, Czech Republic
View GitHub Profile
@lbornov2
lbornov2 / redis_key_sizes.sh
Last active February 21, 2020 10:39 — forked from epicserve/redis_key_sizes.sh
A simple script to print the size of all your Redis keys.
#!/usr/bin/env bash
# This script prints out all of your Redis keys and their size in a human readable format
# Copyright 2013 Brent O'Connor
# License: http://www.apache.org/licenses/LICENSE-2.0
human_size() {
awk -v sum="$1" ' BEGIN {hum[1024^3]="Gb"; hum[1024^2]="Mb"; hum[1024]="Kb"; for (x=1024^3; x>=1024; x/=1024) { if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x]; break; } } if (sum<1024) print "1kb"; } '
}