Interface RMapCacheAsync<K,​V>

    • Method Detail

      • setMaxSizeAsync

        > setMaxSizeAsync​(int maxSize)
        Sets max size of the map and overrides current value. Superfluous elements are evicted using LRU algorithm by default.
        Parameters:
        maxSize - - max size
        Returns:
        void
      • setMaxSizeAsync

        > setMaxSizeAsync​(int maxSize,
                                      EvictionMode mode)
        Sets max size of the map and overrides current value. Superfluous elements are evicted using defined algorithm.
        Parameters:
        maxSize - - max size
        mode - - eviction mode
        Returns:
        void
      • trySetMaxSizeAsync

        > trySetMaxSizeAsync​(int maxSize)
        Tries to set max size of the map. Superfluous elements are evicted using LRU algorithm by default.
        Parameters:
        maxSize - - max size
        Returns:
        true if max size has been successfully set, otherwise false.
      • trySetMaxSizeAsync

        > trySetMaxSizeAsync​(int maxSize,
                                            EvictionMode mode)
        Tries to set max size of the map. Superfluous elements are evicted using defined algorithm.
        Parameters:
        maxSize - - max size
        mode - - eviction mode
        Returns:
        true if max size has been successfully set, otherwise false.
      • putIfAbsentAsync

        RFuture<V> putIfAbsentAsync​(K key,
                                    V value,
                                    long ttl,
                                     unit)
        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. If the map previously contained a mapping for the key, the old value is replaced by the specified value.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then stores infinitely.
        unit - - time unit
        Returns:
        previous associated value
      • putIfAbsentAsync

        RFuture<V> putIfAbsentAsync​(K key,
                                    V value,
                                    long ttl,
                                     ttlUnit,
                                    long maxIdleTime,
                                     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 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.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then time to live doesn't affect entry expiration.
        ttlUnit - - time unit
        maxIdleTime - - max idle time for key\value entry. If 0 then max idle time doesn't affect entry expiration.
        maxIdleUnit - - time unit

        if maxIdleTime and ttl params are equal to 0 then entry stores infinitely.

        Returns:
        previous associated value
      • putAsync

        RFuture<V> putAsync​(K key,
                            V value,
                            long ttl,
                             unit)
        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.
        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then stores infinitely.
        unit - - time unit
        Returns:
        previous associated value
      • putAsync

        RFuture<V> putAsync​(K key,
                            V value,
                            long ttl,
                             ttlUnit,
                            long maxIdleTime,
                             maxIdleUnit)
        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.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then time to live doesn't affect entry expiration.
        ttlUnit - - time unit
        maxIdleTime - - max idle time for key\value entry. If 0 then max idle time doesn't affect entry expiration.
        maxIdleUnit - - time unit

        if maxIdleTime and ttl params are equal to 0 then entry stores infinitely.

        Returns:
        previous associated value
      • putAllAsync

        > putAllAsync​(<? extends K,​? extends V> map,
                                  long ttl,
                                   ttlUnit)
        Associates the specified value with the specified key in batch.

        If MapWriter is defined then new map entries are stored in write-through mode.

        Parameters:
        map - - mappings to be stored in this map
        ttl - - time to live for all key\value entries. If 0 then stores infinitely.
        ttlUnit - - time unit
        Returns:
        void
      • fastPutAsync

        > fastPutAsync​(K key,
                                      V value,
                                      long ttl,
                                       unit)
        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 putAsync(Object, Object, long, TimeUnit) as it not returns previous value.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then stores infinitely.
        unit - - time unit
        Returns:
        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.
      • fastPutAsync

        > fastPutAsync​(K key,
                                      V value,
                                      long ttl,
                                       ttlUnit,
                                      long maxIdleTime,
                                       maxIdleUnit)
        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 putAsync(Object, Object, long, TimeUnit, long, TimeUnit) as it not returns previous value.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then time to live doesn't affect entry expiration.
        ttlUnit - - time unit
        maxIdleTime - - max idle time for key\value entry. If 0 then max idle time doesn't affect entry expiration.
        maxIdleUnit - - time unit

        if maxIdleTime and ttl params are equal to 0 then entry stores infinitely.

        Returns:
        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.
      • fastPutIfAbsentAsync

        > fastPutIfAbsentAsync​(K key,
                                              V value,
                                              long ttl,
                                               ttlUnit,
                                              long maxIdleTime,
                                               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 and max idle time. Entry expires when specified time to live or max idle time has expired.

        Works faster than usual putIfAbsentAsync(Object, Object, long, TimeUnit, long, TimeUnit) as it not returns previous value.

        Parameters:
        key - - map key
        value - - map value
        ttl - - time to live for key\value entry. If 0 then time to live doesn't affect entry expiration.
        ttlUnit - - time unit
        maxIdleTime - - max idle time for key\value entry. If 0 then max idle time doesn't affect entry expiration.
        maxIdleUnit - - time unit

        if maxIdleTime and ttl params are equal to 0 then entry stores infinitely.

        Returns:
        true if key is a new key in the hash and value was set. false if key already exists in the hash
      • updateEntryExpirationAsync

        > updateEntryExpirationAsync​(K key,
                                                    long ttl,
                                                     ttlUnit,
                                                    long maxIdleTime,
                                                     maxIdleUnit)
        Updates time to live and max idle time of specified entry by key. Entry expires when specified time to live or max idle time was reached.

        Returns false if entry already expired or doesn't exist, otherwise returns true.

        Parameters:
        key - - map key
        ttl - - time to live for key\value entry. If 0 then time to live doesn't affect entry expiration.
        ttlUnit - - time unit
        maxIdleTime - - max idle time for key\value entry. If 0 then max idle time doesn't affect entry expiration.
        maxIdleUnit - - time unit

        if maxIdleTime and ttl params are equal to 0 then entry stores infinitely.

        Returns:
        returns false if entry already expired or doesn't exist, otherwise returns true.
      • getWithTTLOnlyAsync

        RFuture<V> getWithTTLOnlyAsync​(K key)
        Returns the value mapped by defined key or null if value is absent.

        If map doesn't contain value for specified key and MapLoader is defined then value will be loaded in read-through mode.

        Idle time of entry is not taken into account. Entry last access time isn't modified if map limited by size.

        Parameters:
        key - the key
        Returns:
        the value mapped by defined key or null if value is absent
      • sizeAsync

        > sizeAsync()
        Returns the number of entries in cache. This number can reflects expired entries too due to non realtime cleanup process.
        Specified by:
        sizeAsync in interface RMapAsync<K,​V>
        Returns:
        size
      • remainTimeToLiveAsync

        > remainTimeToLiveAsync​(K key)
        Remaining time to live of map entry associated with a key.
        Parameters:
        key - - map key
        Returns:
        time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.