Iskren Ivov Chernev

Results 130 comments of Iskren Ivov Chernev

> Btw, regarding hint, Jedis can take CCE to convert JedisConnectionException so users could discard Jedis instance. This will definitely help. CCE is something that doesn't really mean much outside...

@diamondo25 just recreate the client. I think I've also seen it after a timeout exception. In general it happens when the client is in an invalid state, so making a...

@microsoft-github-policy-service agree company="DeepInfra"

I have a very similar problem, here's the gist: ``` python import plyvel db = plyvel.DB('/tmp/testdb/', create_if_missing=True) db.put(b'key', b'value') db.put(b'key2', b'value') print list(db.iterator(start=b'key', include_start=True, stop=b'key1', include_stop=True, reverse=True)) // should print...

The `states` property is an object. So you can put different pieces of it in different files, then merge them together in the main file. Also you can add methods...

So you should be using coffee-script with node.js I guess: Directory structure should be something like: where `first` and `second` are two plugins. ``` . ├── state_machine │   ├── first.coffee...

This is somewhat similar to #183, but it also has some support in the `Generate.cmake`. Can you explain what the idea is? If cross compiling to include the native generator...

> C++ currently only generates a header This is not true anymore (after https://github.com/eclipse-cyclonedds/cyclonedds-cxx/pull/178 is merged). I'm hoping it's on the final straight :)

To be fair, about the C++ generation (and about idlc supporting multiple languages), it makes sense most options to be "bookkeeping" and apply to all languages, and if there are...

> Maybe give that one a try and see what it does for you? I'll give it a try, thanks!