Side-by-side performance benchmarks using NATS.Client.Core against both servers on ephemeral ports. Includes core pub/sub, request/reply latency, and JetStream throughput tests with comparison output and benchmarks_comparison.md results. Also fixes timestamp flakiness in StoreInterfaceTests by using explicit timestamps.
8 lines
317 B
C#
8 lines
317 B
C#
namespace NATS.Server.Benchmark.Tests.Infrastructure;
|
|
|
|
[CollectionDefinition("Benchmark-Core")]
|
|
public class BenchmarkCoreCollection : ICollectionFixture<CoreServerPairFixture>;
|
|
|
|
[CollectionDefinition("Benchmark-JetStream")]
|
|
public class BenchmarkJetStreamCollection : ICollectionFixture<JetStreamServerPairFixture>;
|