Skip to content

Instantly share code, notes, and snippets.

@andresrc
Created August 17, 2012 19:48
Show Gist options
  • Save andresrc/3381978 to your computer and use it in GitHub Desktop.
Save andresrc/3381978 to your computer and use it in GitHub Desktop.
Bocas Cache example
/* On-heap. */
CachingBocas cache = BocasServices.cache().maximumSize(1000).expireAfterAccess(30L, TimeUnit.SECONDS).build(bocas);
/** Off-heap. */
CachingBocas directCache = BocasServices.cache().maximumWeight(536870912L).buildDirect(bocas);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment