Terracotta Ehcache 10.5 | Ehcache API Developer Guide | Cache Event Listeners | Event Processing Queues
 
Event Processing Queues
Advanced users may want to tune the level of concurrency which may be used for delivery of events.

CacheConfiguration<Long, String> cacheConfiguration =
CacheConfigurationBuilder.newCacheConfigurationBuilder(Long.class,
String.class, ResourcePoolsBuilder.heap(5L))
.withDispatcherConcurrency(10) // 1
.withEventListenersThreadPool("listeners-pool")
.build();
1
Indicate the level of concurrency desired
This will enable parallel processing of events at the cost of more threads being required by the system.

Copyright © 2010-2019 | Software AG, Darmstadt, Germany and/or Software AG USA, Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors.