Merge branch 'mrniko/master' into test-timeout

pull/616/head
jackygurui 9 years ago
commit 4e5cf320c2

@ -60,7 +60,8 @@ Projects using Redisson
Articles 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) [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 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) [Java Multimaps With Redis](https://dzone.com/articles/multimaps-with-redis)

@ -16,7 +16,7 @@
package org.redisson.api; package org.redisson.api;
/** /**
* Map object with entry cache support. * Map object with local entry cache support.
* <p> * <p>
* Each instance maintains local cache to achieve fast read operations. * 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. * Suitable for maps which used mostly for read operations and network roundtrip delays are undesirable.
@ -26,6 +26,6 @@ package org.redisson.api;
* @param <K> * @param <K>
* @param <V> * @param <V>
*/ */
public interface RLocalCachedMap<K, V> extends RMap<K, V>, RExpirable, RDestroyable { public interface RLocalCachedMap<K, V> extends RMap<K, V>, RDestroyable {
} }

Loading…
Cancel
Save