What does Large
engine mean?
#1040
-
foyer/foyer-storage/src/store.rs Line 347 in 924c126 foyer/foyer-storage/src/store.rs Line 365 in 924c126 What does |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi. The Moreover, in most cases, I recommend using |
Beta Was this translation helpful? Give feedback.
Hi. The
Large
engine means it is suitable for entries that >= 2KiB. But it can also handle entries smaller than it with space amplification. The design aligns with CacheLib.Moreover, in most cases, I recommend using
Large
. This is because the concurrency model ofSmall
has a larger performance overhead, and the testing in production is not sufficient.