is it possible to limit the Cache size when using ...
# ktor
j
is it possible to limit the Cache size when using the Cache client plugin?
a
Unfortunately, the
HttpCache
plugin supports only unlimited storage out of the box. You can implement the
CacheStorage
interface to define a storage that will restrict its cache size. Feel free to file a feature request if you'd like to have such a storage built into Ktor.
👍 1