Package org.apache.activemq.util


package org.apache.activemq.util
  • Classes
    Class
    Description
    LFUCache<Key,Value>
    LFU cache implementation based on http://dhruvbird.com/lfu.pdf, with some notable differences: Frequency list is stored as an array with no next/prev pointers between nodes: looping over the array should be faster and more CPU-cache friendly than using an ad-hoc linked-pointers structure.