Zihua Li
Zihua Li
Hey @Exnadella, Thanks for raising this up. I did consider working on a wrapper, but the idea of the dual package has a pitfall that a project may end with...
@LRagji hi, can you elaborate a little bit more? I'm not sure if I got the point. Why adding .cjs helps?
ioredis doesn't provide built-in support for this. Maybe use a connection pool to do this manually. An example: ```js const conns = [new Redis(/* replica 1 */ ), new Redis(/*...
Hey @epiphone 👋 There's no such API. I'd not use `setArgumentTransformer` for that case, and instead, I will probably create a thin wrapper: ```ts const publish = (channel, ...args) =>...
The error stack suggests that `info` command is rejected even auth command is passed. Does it work if you run `info` command after `auth`? ``` [root@10-0-94-231 ]# redis-cli -h 172.20.14.223...
我想类似的 issue 是这个:https://github.com/luin/ioredis/issues/275 。是你描述的问题吗?
Hey @MichielDeMey 👋: I didn't know there was such a limit. Thanks for raising this up! Seems to be an issue on TypeScript side https://github.com/microsoft/TypeScript/issues/14107. I'm open to it if...
This could be super useful to enable parallelism for tests using clipboard API. In our case, only a subset of test cases use the clipboard API so we end up...
@phungleson I can't share the code as I wrote it for my company. But `Locker` is a tiny class where `Locker#lock()` basically tries to write and lock a local file...
Fixed in https://github.com/quilljs/quill/pull/3807. Feel free to let me know if there is anything missing. Closing