Hello all, I am implementing a CacheStore interface to make use of the read-through/write-through Ignite capabilities with a background database.
In this scenario a cache.get() method invokes the CacheStore.load() overriden method. How about SQL queries on ignite? Do they end up being translated into series of gets() and hence make use of the read-through CacheStore implementation? Thanks!
