I am running Hazelcast 3.11 in P2P mode and Hibernate-5.3. I have configured second level cache regions with expire policies for mine entities. Now I am trying to configure expire policy for mine Query caches, but issue is, I can not find out query cache default region name and not sure if it is configurable using hazelcast maps. I have tried next configs, but with no luck:
eviction-policy: LFU
in-memory-format: BINARY
name: org.hibernate.cache.internal.*
max-size: 1000
max-size-policy: PER_NODE
time-to-live: 10
time-to-idle: 10
And
eviction-policy: LFU
in-memory-format: BINARY
name: default-query-results-region
max-size: 1000
max-size-policy: PER_NODE
time-to-live: 10
time-to-idle: 10
Is it possible to configure Query Cache Region using hazelcast?