This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NaiveCachingRepo(repo: Repo) extends Repo { | |
def plotd: Future[String] = | |
Cache.getOrElse(CacheKey.plotd) { | |
repo.plotd | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} | |
} |