Christophe Chevalier

Results 42 comments of Christophe Chevalier

I guess that this is not that big of a deal anyway: the chance to guess the compressed size within 8 bytes is low, and if the caller decides to...

First part of the work done in 713b793821ad38708b98f32fdfbf03cd4283777f

I changed the code to be able to specify default timeout/retry limits, AND open a named partition in a single call to `Fdb.OpenAsync(...)`. Sample code that opens the named partition...

There is a new API in fdb 6.2 that allows to get a estimate of the transaction size, which should be more precise than the current heuristic. Only issue is...

This is a bit problematic because `Span`/`Memory` are _not_ part of .NET Standard 2.0 and so very few classes in the BCL accept them, outside of .NET Core 2.x. There...

Some work has been done recently to start incorporating spans in the API. More work is required to really take advantage of the zero-copy aspect, especially for the parsing of...

In _master_, most of the "inbound" slices (from app code to the binding) are replaced with `ReadOnlySpace` and extensions methods have been added with the old `Slice` arguments. This is...

We are already doing something equivalent internally, with a custom build of the FoundationDB .NET Client that references a separate assembly that includes most of the Slice / Tuple /...

Of course, though I don't know what is the current policy regarding bindings created by the community at the moment. Before the acquisition by Apple, this repo was referenced on...

> wouldn't targeting .net standard be the ideal? That's the plan. Most probably .NET Standard 2.0. See https://forums.foundationdb.org/t/foundationdb-net-standard/193 for the discussion.