Skip to content

Instantly share code, notes, and snippets.

@ldclakmal
Created June 6, 2020 15:02
Show Gist options
  • Save ldclakmal/2b0015cc6b060c8787add10af8024fe9 to your computer and use it in GitHub Desktop.
Save ldclakmal/2b0015cc6b060c8787add10af8024fe9 to your computer and use it in GitHub Desktop.
Cache Configuration of Ballerina
public type CacheConfig record {|
int capacity = 100;
AbstractEvictionPolicy evictionPolicy = new LruEvictionPolicy();
float evictionFactor = 0.25;
int defaultMaxAgeInSeconds = -1;
int cleanupIntervalInSeconds?;
|};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment