diff --git a/README.md b/README.md index e687c238f..d22df434b 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,8 @@ Projects using Redisson Articles ================================ -[Java data structures powered by Redis. Introduction to Redisson. PDF](http://redisson.org/Redisson.pdf) +[Java data structures powered by Redis. Introduction to Redisson (pdf)](http://redisson.org/Redisson.pdf) +[Distributed tasks Execution and Scheduling in Java, powered by Redis](https://dzone.com/articles/distributed-tasks-execution-and-scheduling-in-java) [Introducing Redisson Live Objects (Object Hash Mapping)](https://dzone.com/articles/introducing-redisson-live-object-object-hash-mappi) [Java Remote Method Invocation with Redisson](https://dzone.com/articles/java-remote-method-invocation-with-redisson) [Java Multimaps With Redis](https://dzone.com/articles/multimaps-with-redis) diff --git a/redisson/src/main/java/org/redisson/api/RLocalCachedMap.java b/redisson/src/main/java/org/redisson/api/RLocalCachedMap.java index d0ee6b7da..f631241f7 100644 --- a/redisson/src/main/java/org/redisson/api/RLocalCachedMap.java +++ b/redisson/src/main/java/org/redisson/api/RLocalCachedMap.java @@ -16,7 +16,7 @@ package org.redisson.api; /** - * Map object with entry cache support. + * Map object with local entry cache support. *

* Each instance maintains local cache to achieve fast read operations. * Suitable for maps which used mostly for read operations and network roundtrip delays are undesirable. @@ -26,6 +26,6 @@ package org.redisson.api; * @param * @param */ -public interface RLocalCachedMap extends RMap, RExpirable, RDestroyable { +public interface RLocalCachedMap extends RMap, RDestroyable { }