Hello! I need to test performance and reliability of a custom h2 implementation. k6 gets me close, but I can’t figure out how to control a couple of things:
Is it possible to send requests in parallel over the same http2 connection? I need to send two very fast requests over the same connection and ensure that the responses arrive properly, even if the actual packets are interleaved.
Second, is it possible to reuse h2 streams? I want to test long lived streams where requests may make their way to the server every 45s or so, but not teardown the stream in between.