All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redisson.api.RMapCache Maven / Gradle / Ivy

There is a newer version: 3.36.0
Show newest version
/**
 * Copyright (c) 2013-2019 Nikita Koksharov
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.redisson.api;

import java.util.Map;
import java.util.concurrent.TimeUnit;

import org.redisson.api.map.MapWriter;
import org.redisson.api.map.event.MapEntryListener;

/**
 * 

Map-based cache with ability to set TTL for each entry via * {@link #put(Object, Object, long, TimeUnit)} or {@link #putIfAbsent(Object, Object, long, TimeUnit)} * And therefore has an complex lua-scripts inside.

* *

Current redis implementation doesnt have map entry eviction functionality. * Thus entries are checked for TTL expiration during any key/value/entry read operation. * If key/value/entry expired then it doesn't returns. * Expired tasks cleaned by {@link org.redisson.eviction.EvictionScheduler}. This scheduler * deletes expired entries in time interval between 5 seconds to 2 hours.

* *

If eviction is not required then it's better to use {@link org.redisson.RedissonMap}.

* * @author Nikita Koksharov * * @param key * @param value */ public interface RMapCache extends RMap, RMapCacheAsync, RDestroyable { /** * Sets max size of the map. * Superfluous elements are evicted using LRU algorithm. * * @param maxSize - max size * If 0 the cache is unbounded (default). */ void setMaxSize(int maxSize); /** * Tries to set max size of the map. * Superfluous elements are evicted using LRU algorithm. * * @param maxSize - max size * @return true if max size has been successfully set, otherwise false. * If 0 the cache is unbounded (default). */ boolean trySetMaxSize(int maxSize); /** * If the specified key is not already associated * with a value, associate it with the given value. *

* Stores value mapped by key with specified time to live. * Entry expires after specified time to live. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then stores infinitely. * @param ttlUnit - time unit * @return current associated value */ V putIfAbsent(K key, V value, long ttl, TimeUnit ttlUnit); /** * If the specified key is not already associated * with a value, associate it with the given value. *

* Stores value mapped by key with specified time to live and max idle time. * Entry expires when specified time to live or max idle time has expired. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then time to live doesn't affect entry expiration. * @param ttlUnit - time unit * @param maxIdleTime - max idle time for key\value entry. * If 0 then max idle time doesn't affect entry expiration. * @param maxIdleUnit - time unit *

* if maxIdleTime and ttl params are equal to 0 * then entry stores infinitely. * * @return current associated value */ V putIfAbsent(K key, V value, long ttl, TimeUnit ttlUnit, long maxIdleTime, TimeUnit maxIdleUnit); /** * Stores value mapped by key with specified time to live. * Entry expires after specified time to live. *

* If the map previously contained a mapping for * the key, the old value is replaced by the specified value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then stores infinitely. * @param unit - time unit * @return previous associated value */ V put(K key, V value, long ttl, TimeUnit unit); /** * Stores value mapped by key with specified time to live and max idle time. * Entry expires when specified time to live or max idle time has expired. *

* If the map previously contained a mapping for * the key, the old value is replaced by the specified value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then time to live doesn't affect entry expiration. * @param ttlUnit - time unit * @param maxIdleTime - max idle time for key\value entry. * If 0 then max idle time doesn't affect entry expiration. * @param maxIdleUnit - time unit *

* if maxIdleTime and ttl params are equal to 0 * then entry stores infinitely. * * @return previous associated value */ V put(K key, V value, long ttl, TimeUnit ttlUnit, long maxIdleTime, TimeUnit maxIdleUnit); /** * Stores value mapped by key with specified time to live. * Entry expires after specified time to live. *

* If the map previously contained a mapping for * the key, the old value is replaced by the specified value. *

* Works faster than usual {@link #put(Object, Object, long, TimeUnit)} * as it not returns previous value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then stores infinitely. * @param ttlUnit - time unit * * @return true if key is a new key in the hash and value was set. * false if key already exists in the hash and the value was updated. */ boolean fastPut(K key, V value, long ttl, TimeUnit ttlUnit); /** * Stores value mapped by key with specified time to live and max idle time. * Entry expires when specified time to live or max idle time has expired. *

* If the map previously contained a mapping for * the key, the old value is replaced by the specified value. *

* Works faster than usual {@link #put(Object, Object, long, TimeUnit, long, TimeUnit)} * as it not returns previous value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then time to live doesn't affect entry expiration. * @param ttlUnit - time unit * @param maxIdleTime - max idle time for key\value entry. * If 0 then max idle time doesn't affect entry expiration. * @param maxIdleUnit - time unit *

* if maxIdleTime and ttl params are equal to 0 * then entry stores infinitely. * @return true if key is a new key in the hash and value was set. * false if key already exists in the hash and the value was updated. */ boolean fastPut(K key, V value, long ttl, TimeUnit ttlUnit, long maxIdleTime, TimeUnit maxIdleUnit); /** * If the specified key is not already associated * with a value, associate it with the given value. *

* Stores value mapped by key with specified time to live. * Entry expires after specified time to live. *

* Works faster than usual {@link #putIfAbsent(Object, Object, long, TimeUnit)} * as it not returns previous value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then stores infinitely. * @param ttlUnit - time unit * * @return true if key is a new key in the hash and value was set. * false if key already exists in the hash */ boolean fastPutIfAbsent(K key, V value, long ttl, TimeUnit ttlUnit); /** * If the specified key is not already associated * with a value, associate it with the given value. *

* Stores value mapped by key with specified time to live and max idle time. * Entry expires when specified time to live or max idle time has expired. *

* Works faster than usual {@link #putIfAbsent(Object, Object, long, TimeUnit, long, TimeUnit)} * as it not returns previous value. * * @param key - map key * @param value - map value * @param ttl - time to live for key\value entry. * If 0 then time to live doesn't affect entry expiration. * @param ttlUnit - time unit * @param maxIdleTime - max idle time for key\value entry. * If 0 then max idle time doesn't affect entry expiration. * @param maxIdleUnit - time unit *

* if maxIdleTime and ttl params are equal to 0 * then entry stores infinitely. * * @return true if key is a new key in the hash and value was set. * false if key already exists in the hash. */ boolean fastPutIfAbsent(K key, V value, long ttl, TimeUnit ttlUnit, long maxIdleTime, TimeUnit maxIdleUnit); /** * Associates the specified value with the specified key * in batch. *

* If {@link MapWriter} is defined then new map entries will be stored in write-through mode. * * @param map - mappings to be stored in this map * @param ttl - time to live for all key\value entries. * If 0 then stores infinitely. * @param ttlUnit - time unit */ void putAll(java.util.Map map, long ttl, TimeUnit ttlUnit); /** * Associates the specified value with the specified key * in batch. *

* If {@link MapWriter} is defined then new map entries are stored in write-through mode. * * @param map - mappings to be stored in this map * @param ttl - time to live for all key\value entries. * If 0 then stores infinitely. * @param ttlUnit - time unit * @return void */ RFuture putAllAsync(Map map, long ttl, TimeUnit ttlUnit); /** * Returns the number of entries in cache. * This number can reflects expired entries too * due to non realtime cleanup process. * */ @Override int size(); /** * Adds map entry listener * * @see org.redisson.api.map.event.EntryCreatedListener * @see org.redisson.api.map.event.EntryUpdatedListener * @see org.redisson.api.map.event.EntryRemovedListener * @see org.redisson.api.map.event.EntryExpiredListener * * @param listener - entry listener * @return listener id */ int addListener(MapEntryListener listener); /** * Removes map entry listener * * @param listenerId - listener id */ void removeListener(int listenerId); /** * Remaining time to live of map entry associated with a key. * * @param key - map key * @return time in milliseconds * -2 if the key does not exist. * -1 if the key exists but has no associated expire. */ long remainTimeToLive(K key); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy