Packages

  • package root
    Definition Classes
    root
  • package xitrum

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    import xitrum.XXX

    To avoid polluting this namespace, things that are utilities should be put in package xitrum.util, not here.

    Annotations and validators are put to package xitrum.annation and xitrum.validator because there are many of them. It's better for application developers to write:

    import xitrum.annotation._
    import xitrum.validator._
    Definition Classes
    root
  • package local
    Definition Classes
    xitrum
  • LruCache
  • LruSessionStore
c

xitrum.local

LruCache

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()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clear(): Unit
    Definition Classes
    LruCacheCache
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def get(key: Any): Option[Any]
    Definition Classes
    LruCacheCache
  11. def getAs[T](key: Any): Option[T]
    Definition Classes
    Cache
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  14. def isDefinedAt(key: Any): Boolean
    Definition Classes
    LruCacheCache
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  19. def put(key: Any, value: Any): Unit
    Definition Classes
    LruCacheCache
  20. def putDay(key: Any, value: Any, days: Int): Unit
    Definition Classes
    Cache
  21. def putDayIfAbsent(key: Any, value: Any, days: Int): Unit
    Definition Classes
    Cache
  22. def putHour(key: Any, value: Any, hours: Int): Unit
    Definition Classes
    Cache
  23. def putHourIfAbsent(key: Any, value: Any, hours: Int): Unit
    Definition Classes
    Cache
  24. def putIfAbsent(key: Any, value: Any): Unit
    Definition Classes
    LruCacheCache
  25. def putMinute(key: Any, value: Any, minutes: Int): Unit
    Definition Classes
    Cache
  26. def putMinuteIfAbsent(key: Any, value: Any, minutes: Int): Unit
    Definition Classes
    Cache
  27. def putSecond(key: Any, value: Any, seconds: Int): Unit
    Definition Classes
    LruCacheCache
  28. def putSecondIfAbsent(key: Any, value: Any, seconds: Int): Unit
    Definition Classes
    LruCacheCache
  29. def remove(key: Any): Unit
    Definition Classes
    LruCacheCache
  30. def start(): Unit

    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
    Definition Classes
    LruCacheCache
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Cache

Inherited from AnyRef

Inherited from Any

Ungrouped