Skip to content

Instantly share code, notes, and snippets.

@AlexanderDaniel
Created May 22, 2013 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexanderDaniel/5628079 to your computer and use it in GitHub Desktop.
Save AlexanderDaniel/5628079 to your computer and use it in GitHub Desktop.
class CachingRepo(repo: Repo) extends Repo {
def plotd: Future[String] = Cache.getAs[Future[String]](CacheKey.plotd) match {
case Some(value) => value
case None => repo.plotd map { valueFromRepo =>
Cache.set(CacheKey.plotd, Future(valueFromRepo))
valueFromRepo
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment