-
Notifications
You must be signed in to change notification settings - Fork 0
Scalacache
XuefengWu edited this page Feb 18, 2012
·
4 revisions
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