From dac4d516756366b1d46396e436d8121a14ebbe52 Mon Sep 17 00:00:00 2001 From: Ivan Kosilov <58535479+idkosilov@users.noreply.github.com> Date: Tue, 4 Feb 2025 05:31:18 +0700 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8e6610c..01a857a 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,10 @@ the time for a complete `put`+`get` operation cycle (1000 iterations). ![benchmarks](https://raw.githubusercontent.com/idkosilov/ZeroQ/refs/heads/main/benchmark_plot.png) -### Observations +### Performance Comparison -zeroq significantly accelerates interprocess communication, -delivering up to 50× faster data transfer compared to `multiprocessing.Queue`. -This performance gain is achieved through shared memory and lock-free +zeroq demonstrates up to 90x faster performance compared to multiprocessing.Queue, +especially for small payload sizes. This performance gain is achieved through shared memory and lock-free synchronization, eliminating the overhead of serialization and dynamic memory allocation.