I have a spring boot service that writes to an apache ignite cache. The cache is writethrough,writebehind and readthrough. I have mysql as a persistence store that the cache writesbehind to. I would like to clear all cache entries that have been written to the mysql database from the cache.
I am using the cache as a staging area so that i do not make a db call every second instead i set the cache to writebehind every 30 seconds.
I would like to know how to clear to cache once writebehind is complete.