Understanding default caching behaviour
I'm trying to understand Kord's default caching behaviour and wanted to confirm the "boundness" of the default generator.
Kord seems to use a concurrent hash map as a generator by default, which is unbounded, right?
KordEx applies a
lruCache
with a default size of 10000
for messages, which seems wise, but plain Kord doesn't?6 Replies
It doesn't cache messages by default iirc
right true
GitHub
kord/core/src/commonMain/kotlin/cache/KordCache.kt at b89838cab8d15...
Idiomatic Kotlin Wrapper for The Discord API. Contribute to kordlib/kord development by creating an account on GitHub.
alright makes sense
so the other descriptions have unbounded caches by default?
honestly good question
From the look I had at the code, I'd say so, but honestly it is a bit confusing and I can't dive deep into it rn xD