Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在所有存储层(内存存储、堆外存储、磁盘存储)中,可以在 EhCache 中保存的值的最大大小是多少?
我的终极问题是,EhCache 是否适合缓存大文件流?
Ehcache 对存储非常大的值没有内部限制。限制更多地存在于您的应用程序可以拥有的堆内存上。那是因为 Ehcache总是有一个堆上层,当从缓存中检索时,这些值将被放入其中。
Ehcache 的设计目的不是为了将值从堆外或磁盘层传入和传出,因此不需要有足够的堆来保存它们。