Leibale Eidelman
Leibale Eidelman
@guyroyse Node Redis already supports [`GEORADIUS_WITH`](https://github.com/redis/node-redis/blob/master/packages/client/lib/commands/GEORADIUS_WITH.ts)
so you are suggesting that ``` UNSUBSCRIBE channel ``` will throw an error, but ``` SUBSCRIBE channel UNSUBSCRIBE another-channel ``` will "work"? and what about `UNSUBSCRIBE` without arguments (which normally...
this should work ```javascript client.ft.search(testIdx, '@brand:(lg)', {RETURN:['sku' , '$._supplier.name', 'AS', 'name' ]}); ```
which TypeScript version are you using? I'm pretty sure that the minimum version that works with this package is 4.2
`client.isOpen` = is the client open (which doesn't necessarily mean the socket is open/ready). `client.isReady` = is the current socket open and ready for use.
`isOpen` is for the client to know if the socket needs to reopen Can you please elaborate more on what you wanna do?
@24x7soumya can I close this issue?
The reason the code is not working as you would've expected it to is that there is a race condition here: you are executing two commands on two sockets, but...
"because the messages sent over the socket arrive at the redis instance out of order." with `isolated: true`, you are actually using two sockets, so they might arrive at the...
It's not something the client can do, because the server is not replying with "entering block mode" event, so the client cannot know if the command is "on the way"...