dial-once/node-cache-manager-redis

APPEND

fscardua opened this issue · 2 comments

You will plan to implement the redis APPEND function?

Thanks for the suggestion @fscardua
I will take a look and of course if you have time to do a PR, it would be awesome ;-)

@fscardua, you can access all redis commands by accessing the underlying redis client using the #getClient() method:

// lease a redis client from the connection pool
redisCache.store.getClient(function(err, redis) {
    // do something with the client
    redis.client.append(/* ...args */);
    // don't forget to return client to the pool when finished
    redis.done();
});