Class/Object

scalacache.arcus

ArcusCache

Related Docs: object ArcusCache | package arcus

Permalink

class ArcusCache[V] extends AbstractCache[V] with MemcachedTTLConverter

Wrapper around arcus client

Linear Supertypes
MemcachedTTLConverter, AbstractCache[V], LoggingSupport, Cache[V], CacheAlg[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArcusCache
  2. MemcachedTTLConverter
  3. AbstractCache
  4. LoggingSupport
  5. Cache
  6. CacheAlg
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ArcusCache(client: MemcachedClient, keySanitizer: MemcachedKeySanitizer = ReplaceAndTruncateSanitizer(), useLegacySerialization: Boolean = false)(implicit config: CacheConfig, codec: Codec[V])

    Permalink

    client

    arcus client

    keySanitizer

    arcus key sanitizer

    useLegacySerialization

    set this to true to use Spymemcached's serialization mechanism to maintain compatibility with ScalaCache 0.7.x or earlier.

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. final def caching[F[_]](keyParts: Any*)(ttl: Option[Duration])(f: ⇒ V)(implicit mode: Mode[F], flags: Flags): F[V]

    Permalink
    Definition Classes
    AbstractCache → CacheAlg
  6. def cachingF[F[_]](keyParts: Any*)(ttl: Option[Duration])(f: ⇒ F[V])(implicit mode: Mode[F], flags: Flags): F[V]

    Permalink
    Definition Classes
    AbstractCache → CacheAlg
  7. def cachingForMemoize[F[_]](baseKey: String)(ttl: Option[Duration])(f: ⇒ V)(implicit mode: Mode[F], flags: Flags): F[V]

    Permalink
    Definition Classes
    AbstractCache → Cache
  8. def cachingForMemoizeF[F[_]](baseKey: String)(ttl: Option[Duration])(f: ⇒ F[V])(implicit mode: Mode[F], flags: Flags): F[V]

    Permalink
    Definition Classes
    AbstractCache → Cache
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def close[F[_]]()(implicit mode: Mode[F]): F[Any]

    Permalink
    Definition Classes
    ArcusCache → CacheAlg
  11. implicit val config: CacheConfig

    Permalink
    Definition Classes
    ArcusCache → Cache
  12. def doGet[F[_]](key: String)(implicit mode: Mode[F]): F[Option[V]]

    Permalink
    Attributes
    protected
    Definition Classes
    ArcusCache → AbstractCache
  13. def doPut[F[_]](key: String, value: V, ttl: Option[Duration])(implicit mode: Mode[F]): F[Any]

    Permalink
    Attributes
    protected
    Definition Classes
    ArcusCache → AbstractCache
  14. def doRemove[F[_]](key: String)(implicit mode: Mode[F]): F[Any]

    Permalink

    Remove the given key and its associated value from the cache, if it exists.

    Remove the given key and its associated value from the cache, if it exists. If the key is not in the cache, do nothing.

    key

    cache key

    Attributes
    protected
    Definition Classes
    ArcusCache → AbstractCache
  15. def doRemoveAll[F[_]]()(implicit mode: Mode[F]): F[Any]

    Permalink
    Attributes
    protected
    Definition Classes
    ArcusCache → AbstractCache
  16. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def get[F[_]](keyParts: Any*)(implicit mode: Mode[F], flags: Flags): F[Option[V]]

    Permalink
    Definition Classes
    AbstractCache → CacheAlg
  20. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  23. def logCacheHitOrMiss[A](key: String, result: Option[A]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingSupport
  24. def logCachePut(key: String, ttl: Option[Duration]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingSupport
  25. final val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    ArcusCache → LoggingSupport
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  29. final def put[F[_]](keyParts: Any*)(value: V, ttl: Option[Duration])(implicit mode: Mode[F], flags: Flags): F[Any]

    Permalink
    Definition Classes
    AbstractCache → CacheAlg
  30. final def remove[F[_]](keyParts: Any*)(implicit mode: Mode[F]): F[Any]

    Permalink
    Definition Classes
    AbstractCache → CacheAlg
  31. final def removeAll[F[_]]()(implicit mode: Mode[F]): F[Any]

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

    Permalink
    Definition Classes
    AnyRef
  33. def toMemcachedExpiry(ttl: Option[Duration])(implicit clock: Clock = Clock.systemUTC()): Int

    Permalink

    Convert an optional Duration to an int suitable for passing to Memcached.

    Convert an optional Duration to an int suitable for passing to Memcached.

    From the Memcached protocol spec:

    The actual value sent may either be Unix time (number of seconds since January 1, 1970, as a 32-bit value), or a number of seconds starting from current time. In the latter case, this number of seconds may not exceed 60*60*24*30 (number of seconds in 30 days); if the number sent by a client is larger than that, the server will consider it to be real Unix time value rather than an offset from current time.

    ttl

    optional TTL

    returns

    corresponding Memcached expiry

    Definition Classes
    MemcachedTTLConverter
  34. def toString(): String

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

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

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

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

Inherited from MemcachedTTLConverter

Inherited from AbstractCache[V]

Inherited from LoggingSupport

Inherited from Cache[V]

Inherited from CacheAlg[V]

Inherited from AnyRef

Inherited from Any

Ungrouped