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 呢?只需用 Java 编写代码,无需任何数据库访问。对于像这样的常量,我使用枚举或从加载的属性文件中读取postconstruction。您甚至可以一次从数据库中读取它,而不是从属性文件中读取。
postconstruction
(我敢打赌这些信息最终会改变......)