Rohit Joshi
Rohit Joshi
I switch to [crossbeam deque](https://aturon.github.io/crossbeam-doc/crossbeam/sync/chase_lev/fn.deque.html) to replace this library and seem to be working fine.
Can you please also include an example for an interceptor with bidirectional streaming?
@ongardie I am planning to integrate LogCabin to add clustering support in [LightQ](https://github.com/LightIO/LightQ). I am using MacOSX as my development environment but may be switch to Linux for LogCabin integration....
@ongardie Given the complexity involved, it's OK if LogCabin is not supported on the OSX platform. Production environment for [LightQ](https://github.com/LightIO/LightQ) would be Linux so I will try to use #ifdef...
`hsetnx key1 field1 val2` returned 0 because `field1` already exist. So I guess it executes atomically but doesn't roll-back previous operation if subsequent failed.
yes, it seems `redis` doesn't honor `nx` when multi/exec used. As you can see below, the initial value for `key1` is `val1` and when set to `val2` with `NX`, it...
My use-case is insert two key-val pair atomically and rollback if either one fails. e.g . ``` set hash1 token1 NX set token1 val1 NX ``` now if I try...
@yongman can I consider return 0 is failed operation? It may not be an error but data are not stored. ``` 127.0.0.1:5379> hsetnx k1 f1 v1 (integer) 1 127.0.0.1:5379> hsetnx...
Any patch available?
@doujiang24 thanks for looking at this issue. yes, we have replaced str_null with "_" and working fine. just wanted to report this. We are able to reproduce only on one...