From 3e95416f341cd3ddff9fe604c20dee382ab2ee43 Mon Sep 17 00:00:00 2001 From: Nikita Date: Wed, 4 May 2016 20:15:26 +0300 Subject: [PATCH] comment fixed --- src/main/java/org/redisson/core/RSetCache.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/org/redisson/core/RSetCache.java b/src/main/java/org/redisson/core/RSetCache.java index a2db04c93..902cb3493 100644 --- a/src/main/java/org/redisson/core/RSetCache.java +++ b/src/main/java/org/redisson/core/RSetCache.java @@ -19,10 +19,7 @@ import java.util.Set; import java.util.concurrent.TimeUnit; /** - *

Set-based cache with ability to set TTL for each entry via - * {@link #put(Object, Object, long, TimeUnit)} method. - * And therefore has an complex lua-scripts inside. - * Uses map(value_hash, value) to tie with sorted set which contains expiration record for every value with TTL. + *

Set-based cache with ability to set TTL for each object. *

* *

Current Redis implementation doesn't have set entry eviction functionality.