Re: CacheStoreAdapter loadCache overwrite existing values

2017-12-07 Thread slava.koptilin
Hello, > Can I just call `.loadCache(null)` again on my existing cache? CacheStore.loadCache() is generally used for loading the cache on startup, but it can be used at any point after the cache has been created. > Will existing entries be overwritten (I need them to get overwritten). No, existi

CacheStoreAdapter loadCache overwrite existing values

2017-12-07 Thread Lybrial
Im using CacheStoreAdapter to load my tables from a database into ignite cache. I need to update the cache periodically during runtime (no downtime allowed). Can I just call `.loadCache(null)` again on my existing cache? Will existing entries be overwritten (I need them to get overwritten). --