I have set up an EHcache 3 configuration with OnHeap and Disk. However, it seems that when adding a new entry, the put goes through the disk store (this is normal) but not in a asynchronous way. This dramatically affects my performances on put. Did I miss something or is it the normal behaviour? How can I improve put performances when having a disk tier?
ResourcePoolsBuilder poolBuilder = ResourcePoolsBuilder.newResourcePoolsBuilder().heap(heapSize, MemoryUnit.MB); poolBuilder = poolBuilder.disk(diskSize, MemoryUnit.MB, false);
Thanks for your help