From eaeccd3a1467736afc97c844363a8b659219f097 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Sat, 2 Jan 2016 14:56:37 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 55e62a719..eccbe90d5 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,14 @@ Features * Distributed implementation of `java.util.Queue` * Distributed implementation of `java.util.concurrent.BlockingQueue` * Distributed implementation of `java.util.Deque` +* Distributed implementation of `java.util.concurrent.BlockingDeque` * Distributed implementation of `java.util.Map` with TTL support for each entry * Distributed implementation of `java.util.concurrent.ConcurrentMap` with TTL support for each entry * Distributed implementation of reentrant `java.util.concurrent.locks.Lock` with TTL support * Distributed implementation of reentrant `java.util.concurrent.locks.ReadWriteLock` with TTL support * Distributed alternative to the `java.util.concurrent.atomic.AtomicLong` * Distributed alternative to the `java.util.concurrent.CountDownLatch` +* Distributed alternative to the `java.util.concurrent.Semaphore` * Distributed publish/subscribe messaging via `org.redisson.core.RTopic` * Distributed HyperLogLog via `org.redisson.core.RHyperLogLog` * Asynchronous interface for each object From 5c68accab740dea6cfedddadaf716621c6a212ce Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Sun, 3 Jan 2016 20:54:04 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eccbe90d5..6f5f7a330 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Features * Distributed HyperLogLog via `org.redisson.core.RHyperLogLog` * Asynchronous interface for each object * Thread-safe implementation -* All commands are executed in an atomic way +* All commands executes in an atomic way * Supports [Reactive Streams](http://www.reactive-streams.org) * Supports [Redis pipelining](http://redis.io/topics/pipelining) (command batches) * Supports Android platform