Scalacache - opensas/Play20Es GitHub Wiki
Esta página todavía no ha sido traducida al castellano. Puedes ayudarnos con la tarea simplemente presionando el botón
Edit Page. Para más información puedes leer esta guía para el traductor. Aquí puedes ver cuánto nos falta para terminar la traducción.
An in-memory cache with expiry support is provided by Play.
Note: By default, this implementation is also used for Play’s internal caching.
You can find usage instructions in the play.api.cache.Cache API documentation.
To implement a different caching solution, use the following steps.
- In
application.conf, setehcacheplugin=disabled. - Implement the
play.api.CacheAPIinterface. - Implement
play.api.Plugin.
Next: Calling WebServices