From b5b6dcf686574cf603ac038b6b5bd102fbfa772c Mon Sep 17 00:00:00 2001 From: Mark Cilia Vincenti Date: Tue, 2 Jan 2024 10:40:10 +0100 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58f11eb..91f6afb 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Please read the full documentation in our [wiki](https://github.com/MarkCiliaVin ## Benchmarks This library has been extensively benchmarked against several other options and [our benchmarks](https://github.com/MarkCiliaVincenti/AsyncKeyedLockBenchmarks/actions) run publicly and transparently on Github Actions. -When striped locking is an option, the `StripedAsyncKeyedLocker` beats any other option in terms of both speed as well as memory allocations. +When striped locking is an option, the `StripedAsyncKeyedLocker` consistently beats any other option in terms of both speed as well as memory allocations. When the traditional dictionary-based method is used, `AsyncKeyedLocker` with pooling provides a great balance in terms of speed and memory allocations, which is an excellent, safe go-to solution.