1

有没有关于 Java 对象缓存的书或教程?我在这里有几个问题。

  1. 我们如何在分布式环境中进行设置
  2. 可以存储在区域/子区域中的对象是否有最大限制。
  3. 在磁盘上设置缓存的配置。

我一直在阅读这篇(http://docs.oracle.com/cd/E14571_01/core.1111/e10106/ha_cachewatch.htm)文章,但任何其他帮助都会很棒..

4

1 回答 1

1

To my knowledge, there is no general book on the topic Java Object Cache. Since we have a common standard now (JSR107), maybe it makes more sense to have something like that.

The approach you need to do, depends on what you need and how it works in the caching product you decided for. E.g. the "maximum limit of objects" is totally specific to a concrete product.

In the "distributed caching" area there are a number of products, that come with very useful documentation, tutorials and solution white papers. Examples:

  • infinispan
  • hazelcast
  • gridgain
  • oracle coherence
  • IBM elastic caching (see also the RedBooks)
  • teracotta

So there is a lot of information on the topic out there!

于 2014-06-15T11:43:25.840 回答