Class TimeCacheMap<K,​V>


  • @Deprecated
    public class TimeCacheMap<K,​V>
    extends Object
    Deprecated.
    Expires keys that have not been updated in the configured number of seconds. The algorithm used will take between expirationSecs and expirationSecs * (1 + 1 / (numBuckets-1)) to actually expire the message.

    get, put, remove, containsKey, and size take O(numBuckets) time to run.

    The advantage of this design is that the expiration thread only locks the object for O(1) time, meaning the object is essentially always available for gets/puts.

    • Constructor Detail

      • TimeCacheMap

        public TimeCacheMap​(int expirationSecs)
        Deprecated.
      • TimeCacheMap

        public TimeCacheMap​(int expirationSecs,
                            int numBuckets)
        Deprecated.
    • Method Detail

      • containsKey

        public boolean containsKey​(K key)
        Deprecated.
      • get

        public V get​(K key)
        Deprecated.
      • put

        public void put​(K key,
                        V value)
        Deprecated.
      • remove

        public Object remove​(K key)
        Deprecated.
      • size

        public int size()
        Deprecated.
      • cleanup

        public void cleanup()
        Deprecated.