Jerome Gravel-Niquet
Jerome Gravel-Niquet
I'm looking into building pub/sub into a system I maintain and was wondering if it would be suitable. I'm a little confused by the examples and documentation, it feels like...
Even if it's easy to expose a Postgres cluster to the Internet, it needs to be secured. Right now we don't care much because it's meant to be used internally...
This was non-obvious to me since I have experience with V8 which takes care of synchronization for you. Before setting a context, you might need to unset the current one....
I made a simple program (uses ChakraCore 0.11, current master) which segfaults when releasing a Context: ``` Process 29099 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS...
VMs cannot be booted with 32MB (or lower) as the memory size. It does work with >= 33MB though. Steps to reproduce: ```shell # In one terminal ./firecracker --api-sock /tmp/firecracker.socket...
(Hey there! :wave:) We're looking into using `splice` for some transfers of IO and I'm wondering if it's possible with this crate. My concern is that it might buffer some...
I've been wondering if it would be a pain to transparently use `rustls` for platforms that can't support kernel TLS offloading? It would make it easier to develop on multiple...
The number of queued changes can really get large if a node has been off for a while and then starts syncing millions of changes. One problem is that ever...
Doing so both in transit and in memory should bring in significant benefits. For example: using a `u64` for `CrsqlSeq` when they should most-often fit in a `u8` is a...
Probabilistic data structures can help Corrosion sync faster by preventing 99% of lookups for "cleared" versions. Right now, a DB lookup is required if a version is known because Corrosion...