OPI Blog
Learn from experts in their fields

Browsing Tags: cache

How to Not Be Afraid of Transitive Dependencies in npm
Back in March of 2016 there was a rather large hiccup in the npm ecosystem. Basically, an author unpublished a prominent package that many projects happened to depend on. Cue mass panic as builds around ...
Memoization in Groovy
Memoization is a form of caching.  Judging by the article on Wikipedia and other sites, memoization is very useful for recursive calculations, though it can be used anywhere you need to store previously calculated data ...
Dec 19, 2012
Caching with JCS
Do you need to implement some data caching in your project to help speed up retrieval from a slow data source?  Consider using JCS to bring the data a little closer to the users.  JCS ...