写下并写完

时间:2018-05-01 15:03:18

标签: ignite

持久性写入在Ignite中以两种模式发生:Write through和Write Behind。我想将它设置为Write Behind,但我对给定here的示例感到困惑。在提供的示例中,用户将两者都设置为真,即

configuration.setWriteThrough(true);
        configuration.setWriteBehindEnabled(true);

不应该只是configuration.setWriteBehindEnabled(true);吗?

1 个答案:

答案 0 :(得分:2)

setWriteThrough(true)完全启用CacheStore集成。如果不设置此属性,则永远不会触及CacheStore更新。如果您想使用后写模式,除此之外还需要设置setWriteBehindEnabled(true)