Pierre Zemb
Pierre Zemb
:wave: I haven't done this yet, but it seems it can be retrieved through the [special keys](https://github.com/apple/foundationdb/blob/release-7.3/documentation/sphinx/source/special-keys.rst#transaction-module). I found an example in the [Record-Layer](https://github.com/FoundationDB/fdb-record-layer/blob/main/fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/FDBRecordContext.java#L1437) to help you get started. Feel...
Good catch! You're correct, the current implementation doesn't iterate through paginated results from FDB. Your fix works, but we should use [get_ranges_keyvalues()](https://docs.rs/foundationdb/latest/foundationdb/struct.Transaction.html#method.get_ranges_keyvalues) instead of manually handling `next_range()`. Want to submit...
> First of all, thank you for the hard work, this is an amazing crate. Thanks :smile: > I was reading through comments to methods on Directory trait recently and...
I think we have stampled across this issue in simulation. We have a very basic RL's fork in Rust that we can simulate as an external workload. We found this...
the PR is ready on my side, if you want to review @Speedy37
> If this is so each tests can call boot, I don't think theses changes fix that. To work, this has to have multiple tests overlapping each over or I'm...
Looking good for a first iteration! Could you rebase and add a dedicated github action files?
Hi! Thanks a lot for your PR — the issue you’re addressing is quite interesting! I wasn’t expecting a noticeable latency spike when calling `commit()` on read-only transactions, especially since...
Hey, thanks again for the thoughtful response! I still think it's better to keep the current behavior of `commit()` for two main reasons: * **Consistency with other bindings**: The Java,...
Thanks @atn34! Could you create the issues with some context in it? In the mean time, I will setup my dev environment.