Node.js – How to delete everything in node redis

node-redisnode.jsredis

I want to be able to delete all the keys. Is there a way to flush all in node redis?

Redis client:

client = redis.createClient(REDIS_PORT, REDIS_HOST);

Best Answer

Perhaps flushdb or flushall are options that you can look into.

In Node, with the client, these look like this:

client.flushdb( function (err, succeeded) {
    console.log(succeeded); // will be true if successfull
});