Leibale Eidelman

Results 246 comments of Leibale Eidelman

I think it'll fit better in the [client-configuration.md](https://github.com/redis/node-redis/blob/master/docs/client-configuration.md) file

@phpbg I think that we should merge your changes into that doc somehow.. :)

@phpbg sorry for the long dealy, I was on vacation..

I've never heard of `diagnostics_channel`, and it's still experimental, but it looks like the best solution for that. Wanna open a PR?

@jkoontz2010 thank you so much! I'll make sure someone will review it soon.

@jkoontz2010 sorry for the long delay :man_facepalming: review my change please?

v4 works with promises, not callbacks, try this instead: ``` const redis = require("redis") var cacheHostName = "192.168.1.103"; const key = "u1"; async function main() { const client = redis.createClient({...

you should `await len()`: ``` const redis = require("redis") var cacheHostName = "192.168.1.103"; const key = "u1"; let client; async function len() { console.log("Len: ", await client.lLen(key)); } async function...

The thing is that a command can be aborted only before it was written on the socket, after that, even do the promise is still pending, you cannot abort the...