Skip to content

Instantly share code, notes, and snippets.

@brycebaril
Created December 22, 2013 18:59
Show Gist options
  • Save brycebaril/d455887488639c64a31b to your computer and use it in GitHub Desktop.
Save brycebaril/d455887488639c64a31b to your computer and use it in GitHub Desktop.
apiaxle-base (package/app/model/redis.js)
RedisMulti = function (_super) {
__extends(RedisMulti, _super);
function RedisMulti(ns, client, args) {
this.ns = ns;
RedisMulti.__super__.constructor.call(this, client, args);
}
RedisMulti.prototype.getKey = Redis.prototype.getKey;
return RedisMulti;
}(redis.Multi)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment