On Mon, Jun 29, 2015 at 12:38 PM, Ognen Duzlevski <[email protected] > wrote:
> 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? > The answer is No. Queries are executed only on the in-memory data. To support what you are suggesting, we would have to execute a query on the database, get all the keys back, and then execute a bunch of cache.get(..) calls for each returned key. Overall, this would be very slow and that's why was not done for Ignite. Having said that, we can enhance our Hibernate integration to support this use case. I will file a ticket. D.
