Class

net.liftweb.http

RequestMemoize

Related Doc: package http

Permalink

abstract class RequestMemoize[K, V] extends MemoizeVar[K, V]

Memoize a value for the duration of the current request (and subsequent Ajax requests made as a result of viewing the page)

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RequestMemoize
  2. MemoizeVar
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RequestMemoize()

    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. def __nameSalt: String

    Permalink
    Attributes
    protected
    Definition Classes
    MemoizeVar
  5. def apply(key: K, dflt: ⇒ V): V

    Permalink
    Definition Classes
    MemoizeVar
  6. def apply(key: K): Box[V]

    Permalink
    Definition Classes
    MemoizeVar
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def buildLRU: LRU[K, Box[V]]

    Permalink
    Attributes
    protected
    Definition Classes
    MemoizeVar
  9. def cacheSize: Int

    Permalink

    The number of entries that will be memoized

    The number of entries that will be memoized

    Attributes
    protected
    Definition Classes
    MemoizeVar
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. object coreVar extends RequestVar[LRU[K, Box[V]]]

    Permalink
    Attributes
    protected
    Definition Classes
    RequestMemoizeMemoizeVar
  12. def defaultFunction(key: K): Box[V]

    Permalink

    Override this method if there's a default way of calculating this MemoizedVar (for example, a database lookup)

    Override this method if there's a default way of calculating this MemoizedVar (for example, a database lookup)

    Attributes
    protected
    Definition Classes
    MemoizeVar
  13. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def get(key: K, dflt: ⇒ V): V

    Permalink
    Definition Classes
    MemoizeVar
  17. def get(key: K): Box[V]

    Permalink
    Definition Classes
    MemoizeVar
  18. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. def set(key: K, value: V): Unit

    Permalink
    Definition Classes
    MemoizeVar
  25. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. def unapply(key: K): Option[V]

    Permalink

    Use the MemoizeVar in an extractor

    Use the MemoizeVar in an extractor

    Definition Classes
    MemoizeVar
  28. def update(key: K, value: V): Unit

    Permalink
    Definition Classes
    MemoizeVar
  29. final def wait(): Unit

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

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

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

Inherited from MemoizeVar[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped