Package

scalacache

Permalink

package scalacache

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

Value Members

  1. def caching[V](keyParts: Any*)(f: ⇒ V)(implicit scalaCache: ScalaCache, flags: Flags): V

    Permalink
  2. def cachingWithTTL[V](keyParts: Any*)(ttl: Duration)(f: ⇒ V)(implicit scalaCache: ScalaCache, flags: Flags): V

    Permalink
  3. def get[V](keyParts: Any*)(implicit scalaCache: ScalaCache, flags: Flags): Future[Option[V]]

    Permalink
  4. def getSync[V](keyParts: Any*)(implicit scalaCache: ScalaCache, flags: Flags): Option[V]

    Permalink
  5. val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    StrictLogging
  6. package lrumap

    Permalink
  7. def put[V](keyParts: Any*)(value: V, ttl: Option[Duration])(implicit scalaCache: ScalaCache, flags: Flags): Future[Unit]

    Permalink
  8. def putWithKey[V](key: String, value: V, ttl: Option[Duration])(implicit scalaCache: ScalaCache, flags: Flags): Future[Unit]

    Permalink
  9. def remove(keyParts: Any*)(implicit scalaCache: ScalaCache): Future[Unit]

    Permalink
  10. def removeAll()(implicit scalaCache: ScalaCache): Future[Unit]

    Permalink

Inherited from StrictLogging

Inherited from AnyRef

Inherited from Any

Ungrouped