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.
HashMap 数据是在应用程序级别还是会话级别?我想缓存用户特定的数据?因此,如果同时从两个不同的登录访问该缓存,它应该始终返回当前用户(会话)的数据。HashMap 是好方法吗?
HashMap 只是一个集合。你需要把它放在一个上下文中。您使用什么应用程序框架?
我建议使用随时可用的缓存。它有生存时间和驱逐政策。试试 EHCache 或 Hazelcast。