Hello,
I have implemented a cache store for read-through ignite caching, whenever there is a read-through operation through the cache-store, I want to limit this to single thread or at max 2. The reason behind the same is due to the fact that the underlying cache store is a remote Rest based webservice that can only support limited number of connections. Hence I want to have limited number of requests being sent for read-through. Please note that if I configure publicThreadPoolSize =1 , this would mean all cache.get and cache.getAll operations would be single threaded. Hence this behaviour is not desired, I want to have throttling at the cache store level only. Thanks, Mridul