Jerome Gravel-Niquet
Jerome Gravel-Niquet
This allows multiple concurrent write transactions. ## Checklist - [x] Change MSRV back to 1.74 - [x] Uncomment `unwrap_used` lint - [x] Remove #[inline] attributes - [x] Keep the option...
I had been scratching my head at a `default_on_eof` not working (error: eof) and was finally able to reproduce. ```rust #[derive(PartialEq, Debug, Readable, Writable)] enum DerivedEnumWithNestedDefaultOnEof { First { b:...
Related: https://github.com/jeromegn/cr-sqlite/pull/4 This significantly simplifies the bookkeeping in Corrosion. It also makes it realistic to allow high-frequency changes for the same table + PK combos (since they won't be creating...
Allows a node to follow another, not necessarily in the same cluster.
Passing a third argument to `crsql_commit_alter` tells cr-sqlite to use a fast path to change the schema. This should pretty much only be used when adding column(s).
I don't know if these logs are important because my app appears to be working properly (though it isn't accessing the filesystem post-snapshot-load). ``` 2024-11-20T12:07:50.095125693 [anonymous-instance:main] Failed to execute Out...
Sorry for the vagueness of this issue, I am looking for help in troubleshooting my queue. I've started using this crate to pass logs from multiple processes into a single...
Would it be possible to add methods for batch recv / send? The sending end doesn't bother me too much, but I wonder if there are optimizations available if the...
Similarly to #89, would it be possible to change the StoresServerSessions trait's methods to be asynchronous? Perhaps only `get` needs to be asynchronous. I realize that would be a pretty...