Anton Iaroshchuk
Anton Iaroshchuk
Thanks for the suggestion, @yordis! It was an interesting experiment. [Using the official C# library](https://developers.eventstore.com/clients/grpc/reading-events.html#reading-forwards) we're getting quite a faster stream reading on localhost: - both longer and shorter streams...
We've captured the network traffic too to compare the C# implementation vs Spear. It does seem like the C# one is less chatty. In case it's useful for further investigation,...
Here's a bit more info from our field testing: - we're now loading events using `Spear.read_stream/3` instead of `Spear.stream!/4` - this has resulted in approx 3x reduction of the average...
Sorry for the late reply, @the-mikedavis. Here's the dotnet code I've used for my timings: [dotnet_esdb_timing.zip](https://github.com/NFIBrokerage/spear/files/13885292/dotnet_esdb_timing.zip) It basically does something as simple as this: ```c# var stream_name = "Document:134"; var...