Reputation: 725
I'm using the redis
Node package for connecting, storing and retrieving data from Redis. Is it possible to add new commands to the client as Redis introduces those commands? For example, is there a way to define the GEOADD command on the client?
Upvotes: 1
Views: 1788
Reputation: 1
as of version 2.8 of node-redis, it is possible to add arbitrary commands to the prototype by using Redis.addCommand(name)
Upvotes: 0