play.api

cache

package cache

Contains the Cache access API.

Visibility
  1. Public
  2. All

Type Members

  1. trait CacheAPI extends AnyRef

    API for a Cache plugin.

  2. class CachePlugin extends Plugin

    A Cache Plugin provides an implementation of the Cache API.

  3. case class Cached [A] (key: (RequestHeader) ⇒ String, duration: Int, action: Action[A], app: Application) extends Action[A] with Product with Serializable

    Cache an action.

  4. class EhCachePlugin extends CachePlugin

    EhCache implementation.

Value Members

  1. object Cache extends AnyRef

    Public Cache API.

  2. object Cached extends Serializable