From 3458b2a2d651bbd259bb2471da65071005e55b6d Mon Sep 17 00:00:00 2001 From: Tilmann Date: Fri, 8 Mar 2019 10:44:34 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a48646d..6612839 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Maven: ch.ethz.globis.phtree phtree - 2.0.2 + 2.1.0 ``` @@ -33,7 +33,7 @@ A C++ version of the PH-Tree (with slightly different design) is available [here # News -### 2019-03-05 +### 2019-03-08 Released version 2.1.0 of the PH-Tree. - Avoid 'synchronized' object pooling. Object pooling in V13, v16 and v16HD have been modified to be non-`synchronized`, instead each instance of the PhTree has its own pool. A a result, running several PhTree instances in parallel will slightly increase memory usage (due to several pools allocated), butt will completely avoid contention caused by `synchronized` pools. A `synchronized` version of V13 is still available as `v13SynchedPool`.