Class

xitrum.local

LruCache

Related Doc: package local

Permalink

class LruCache extends Cache

Config in xitrum.conf:

xitrum {
  cache {
    "xitrum.local.LruCache" {
      maxElems = 10000
    }
  }
}
Linear Supertypes
Cache, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LruCache
  2. Cache
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LruCache()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clear(): Unit

    Permalink
    Definition Classes
    LruCacheCache
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def get(key: Any): Option[Any]

    Permalink
    Definition Classes
    LruCacheCache
  11. def getAs[T](key: Any): Option[T]

    Permalink
    Definition Classes
    Cache
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def isDefinedAt(key: Any): Boolean

    Permalink
    Definition Classes
    LruCacheCache
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def put(key: Any, value: Any): Unit

    Permalink
    Definition Classes
    LruCacheCache
  20. def putDay(key: Any, value: Any, days: Int): Unit

    Permalink
    Definition Classes
    Cache
  21. def putDayIfAbsent(key: Any, value: Any, days: Int): Unit

    Permalink
    Definition Classes
    Cache
  22. def putHour(key: Any, value: Any, hours: Int): Unit

    Permalink
    Definition Classes
    Cache
  23. def putHourIfAbsent(key: Any, value: Any, hours: Int): Unit

    Permalink
    Definition Classes
    Cache
  24. def putIfAbsent(key: Any, value: Any): Unit

    Permalink
    Definition Classes
    LruCacheCache
  25. def putMinute(key: Any, value: Any, minutes: Int): Unit

    Permalink
    Definition Classes
    Cache
  26. def putMinuteIfAbsent(key: Any, value: Any, minutes: Int): Unit

    Permalink
    Definition Classes
    Cache
  27. def putSecond(key: Any, value: Any, seconds: Int): Unit

    Permalink
    Definition Classes
    LruCacheCache
  28. def putSecondIfAbsent(key: Any, value: Any, seconds: Int): Unit

    Permalink
    Definition Classes
    LruCacheCache
  29. def remove(key: Any): Unit

    Permalink
    Definition Classes
    LruCacheCache
  30. def start(): Unit

    Permalink

    Cache engine like Hazelcast may take serveral seconds to start, this method is called at Xitrum server start to force the cache to start, instead of letting it start lazily at first cache access.

    Cache engine like Hazelcast may take serveral seconds to start, this method is called at Xitrum server start to force the cache to start, instead of letting it start lazily at first cache access.

    Definition Classes
    LruCacheCache
  31. def stop(): Unit

    Permalink
    Definition Classes
    LruCacheCache
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Cache

Inherited from AnyRef

Inherited from Any

Ungrouped