持久性写入在Ignite中以两种模式发生:Write through和Write Behind。我想将它设置为Write Behind,但我对给定here的示例感到困惑。在提供的示例中,用户将两者都设置为真,即
configuration.setWriteThrough(true);
configuration.setWriteBehindEnabled(true);
不应该只是configuration.setWriteBehindEnabled(true);
吗?
答案 0 :(得分:2)
setWriteThrough(true)
完全启用CacheStore
集成。如果不设置此属性,则永远不会触及CacheStore
更新。如果您想使用后写模式,除此之外还需要设置setWriteBehindEnabled(true)
。