Clément Pascutto

Results 5 issues of Clément Pascutto

Hi ! First of all thanks for this great tool ! I've been willing to use it over the past few days, and when I needed to generate `bytes` and...

Hi there ! Here is some report about code breaking syntax highlighting in OCaml, while accepted by the compiler : ``` let cast t = (t :> [`Read | `Write]...

The most resource intensive operation in `index` is currently the `merge` operation, which combines the sorted in-memory `log` with the on-disk `data` into the next sorted `data` file. It basically...

performance

One remaining spot of allocations in `index` lives in the interface between `index` and `repr`, in the `Key.encode: t -> string` and `Value.encode: t -> string` functions of the functor...

performance

The fanout is currently built during the `merge` operation, by registering all addition in its internal array, then it is both written in the header of the file, and kept...

performance