Re: Write-Behind Cache configuration and custom cache store

2017-09-06 Thread vkulichenko
Rick, writeThrough property enables cache store integration overall, while writeBehindEnabled property controls whether store updates are async or not. So this is correct behavior. As for transactions, write-behind store updates are always non transactional. I.e. you will have a transaction in

Write-Behind Cache configuration and custom cache store

2017-09-06 Thread rick_tem
Hi, I am using Ignite 2.0.0 with a cache configurations shown below. First, I noticed that writeAll() or any write() was not called on my cache store when writeBehindEnabled=true but writeThrough=false. Seems like if writeBehindEnabled set to true, it should override writeThrough, but anyway, I