If I am caching something in local cache and using it on a regular basis does the distributed cache know that the local cache is using it?
The reason I ask this is because the distributed cache has a Least Used Eviction policy. If I am not using it from distributed cache and the distributed cache doesn't know I am using it then it will be evicted at some stage.
This is a large piece of data that rarely changes so I will cache it for a long period of time. I don't want to have to drag 2 or 3 MG across the wire more often than I have to based on it being evicted from the Distributed Cache on a least used basis.
Hence my question - does the distributed cache have knowledge that it is being used and therefore not evict it as least used?