My coherence configuration is super simple:
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>*</cache-name>
<scheme-name>distributed</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>distributed</scheme-name>
</distributed-scheme>
</caching-schemes>
</cache-config>
and expected behaviour is that every read will go to partition, however from perf tests I could see that reads is done locally - no network calls occur.
I tried to follow official docs but wasn't able to find how to make cache fully distributed. Any advise will be appreciated!