WebP Server Go 0.12.0
What's Changed
- Added
MAX_CACHE_SIZE
config by @n0vad3v in #344, which will solve the following issues: - Bugfix:
CACHE_TTL
should beWEBP_CACHE_TTL
in environment variable.
About MAX_CACHE_SIZE
MAX_CACHE_SIZE
is set in number, with unit of MiB, the default value is 0, which will remain current setup, if this value is set, for example 50, then a background task will run alongside with WebP Server Go once per minute, that task will ensure the following directories will be below 50MiB, seperately.
./metadata
./exhaust
./remote-raw
If any of the above directories' size goes above setting value, the oldest file will be deleted to make space.
Note, this will keep the above directories' size seperately, so there can be the following situation with total size of 101MiB.
./metadata
(4MiB)./exhaust
(48MiB)./remote-raw
(49MiB)
New Contributors
- @syedcherry made their first contribution in #337
Full Changelog: 0.11.3...0.12.0