refactoring

pull/616/head^2
Nikita 9 years ago
parent 19726569db
commit f064c48da8

@ -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