Skip to content

Instantly share code, notes, and snippets.

@AlexanderDaniel
Created May 22, 2013 14:36
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/5628015 to your computer and use it in GitHub Desktop.
Save AlexanderDaniel/5628015 to your computer and use it in GitHub Desktop.
class NaiveCachingRepo(repo: Repo) extends Repo {
def plotd: Future[String] =
Cache.getOrElse(CacheKey.plotd) {
repo.plotd
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment