Skip to content

Instantly share code, notes, and snippets.

@daxxog
Created December 29, 2012 18:52
Show Gist options
  • Save daxxog/4408668 to your computer and use it in GitHub Desktop.
Save daxxog/4408668 to your computer and use it in GitHub Desktop.
//redis hash optimizer
var hopt = function(key, what, level) { //redis hash optimizer
var _what = what.toString();
return [key + _what.substr(0, _what.length - level), _what.substr(_what.length - level, _what.length)];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment