|
|
|
@ -38,7 +38,7 @@ import org.redisson.api.mapreduce.RMapReduce;
|
|
|
|
|
public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K, V> {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Loads all map entries to this Redis map.
|
|
|
|
|
* Loads all map entries to this Redis map using {@link org.redisson.api.map.MapLoader}.
|
|
|
|
|
*
|
|
|
|
|
* @param replaceExistingValues - <code>true</code> if existed values should be replaced, <code>false</code> otherwise.
|
|
|
|
|
* @param parallelism - parallelism level, used to increase speed of process execution
|
|
|
|
@ -46,7 +46,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
|
|
|
|
|
void loadAll(boolean replaceExistingValues, int parallelism);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Loads map entries whose keys are listed in defined <code>keys</code> parameter.
|
|
|
|
|
* Loads map entries using {@link org.redisson.api.map.MapLoader} whose keys are listed in defined <code>keys</code> parameter.
|
|
|
|
|
*
|
|
|
|
|
* @param keys - map keys
|
|
|
|
|
* @param replaceExistingValues - <code>true</code> if existed values should be replaced, <code>false</code> otherwise.
|
|
|
|
|