3rd-Eden / memcached

A fully featured Memcached client build on top of Node.js. Build with scaling in mind so it will support Memcached clusters and consistent hashing.
MIT License
1.31k stars 276 forks source link

Please add support for one more command #362

Open lordjim1985 opened 3 years ago

lordjim1985 commented 3 years ago

Hi,

I would like to ask if it is possible to add support for one more command for memcached?

lru_crawler metadump all

Best regards

safonovklim commented 3 years ago

Try to use:

const client = new Memcached('127.0.0.1:11211');
client.command({
    command: "lru_crawler metadump all",
    callback: (err, data) => console.log(err, data),
})