Andrea Corradi
Andrea Corradi
This does not seems to be related with the project. Maybe you have a compilation that hanged some where and it is still keeping the lock or some inconsistency within...
The coordinator is running correctly. You can follow this example to create https://github.com/xaynetwork/xaynet/blob/master/bindings/python/examples/keras_house_prices/README.md your own client. Keep in mind that the selection of a client for each phase of the...
are you using python 3.6 or higher? I cannot reproduce this.
> A transaction (for an optimistic transaction DB) is built and committed, and some actions need to be taken when in response to the key-value pairs that were changed. The...
I made `Get` and `GetCF` generic over the option type. Now `Snapshot` implements both. I noticed that the signature of many methods in `WriteBatch` are different w.r.t the one in...
> I'm still reviewing ... But question for now is: Do we really need a separate trait for every operation ? What's profit ? Cleaner api and type safety. The...
Adding some small (pseudo)code examples. With this PR we can implement `Put` for `Transaction` like: ``` impl Put for Transaction { fn put(key: K, value: V) { ffi::rocksdb_transaction_put(key, value) }...
If we reach an agreement on one trait per op I can implement that so you can review that directly.
I'll work on it on the weekend!
The problem with the current implementation of traits is that each trait is implemented for every `T` that implements `Handle` , `Handle` is private to the crate so is not...