Lucas Kent
Lucas Kent
This is a particularly tricky part of windsocks design but at the same time feels super important, so probably needs discussion before work begins on it. Or maybe we'll just...
When benching on a single machine we need to finely control the number of threads used by the services spun up by windsock. This includes the bench itself, shotover and...
This is not a high priority just a nice to have. The advantages of the rewrite is: * make it easier to build shotover. This parser is currently our only...
Write an integration test that looks something like: 1. spin up thread that does: ```rust i = 0; loop { i += 1; match connection.send("INSERT INTO blah id={i}") { Ok(_)...
Update benchmarks to include comparisons against the more generic and purely software implementation from the crc crate. I refactored the way `benchmark_group`s were named as they were previously creating redundant...
I can only reproduce this issue on the ubuntu github actions machines, locally on my arch linux machine this issue does not occur. We will probably just disable our TLS...
I tried digging through the recent PRs but couldnt find the reasoning for making executing a statement consume the statement. Should we make `Statement`s cloneable to avoid reallocating the memory...
Is this a bug in one or the other? Also worth noting that there is the similar method execute_batch_with_payloads and they both use the old style `CassFuture` instead of an...
I can see that the `name` string literal is used in a function call here: https://github.com/dtolnay/typetag/blob/bb67b9e5feb6007e37b9760a30afacfb5900eeb0/impl/src/tagged_impl.rs#L37 So I think typetag could additionally support the user specifying the name as a...