Marco Manino
Marco Manino
The id() function now uses a Linear Congruential Generator with a 21-bit period so that it generates pseudo-random numbers without duplicates, without the need of a cache holding already used...
I really like this library and I'd really want to use it together with a C library (namely, libpq). The main problem is that it seems not possible to bind...
I have problems understanding how to use a resource to create a new observable from scratch. The most trivial example I can come out with is: ``` c++ rxcpp::observable::scope( []()...
This PR adds a check for the existence of the methodset in the interpreter implementation of typeasserts. This is necessary since this [field is optional](https://github.com/tinygo-org/tinygo/blob/release/compiler/interface.go#L250). This should be the last...
This PR adds a non-default strategy to dynamically compute the amount of entries to keep in memory based on the size of the snapshot. The problem with using a fixed...
This PR removes a useless `#undef` at the end of every raft `.c` file.
This is another PR that aims at reducing the footprint of creating a barrier and in particular aims at reducing the write amplification (and its dependency on an fsync and...
This PR changes the order in which callbacks are applied, in the case an apply manages to commit[^1] more than one entry in a single round. What happened before was...
This PR fixes the reading of the main file in the case of an "over the limit" read, which might happen when enabling autovacuum.
This PR further separates the behaviour of the many different files SQLite uses. In detail, it splits the behaviour in 3 different structs: - `vfsWalFile` which is only related to...