From 064ef6ef44b799e4d8af4c5657a04b276a65cc36 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 30 Mar 2016 19:22:05 +0300 Subject: [PATCH] added client end-to-end benchmark for 10K concurrent connections --- client_timing_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client_timing_test.go b/client_timing_test.go index 36ce6a3..2cb30e4 100644 --- a/client_timing_test.go +++ b/client_timing_test.go @@ -318,6 +318,10 @@ func BenchmarkClientGetEndToEnd1000Inmemory(b *testing.B) { benchmarkClientGetEndToEndInmemory(b, 1000) } +func BenchmarkClientGetEndToEnd10KInmemory(b *testing.B) { + benchmarkClientGetEndToEndInmemory(b, 10000) +} + func benchmarkClientGetEndToEndInmemory(b *testing.B, parallelism int) { ln := fasthttputil.NewInmemoryListener()