Determines how the local cache should behave when data that exists in it is updated in the master space.
CreateLocalCache(ISpaceProxy, LocalCacheConfig)
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
public enum LocalCacheUpdateMode
Public Enumeration LocalCacheUpdateMode
public enum class LocalCacheUpdateMode
public enum LocalCacheUpdateMode
Members
Member | Description |
---|---|
None |
The local cache will not be notified on data changes in the master space,
in this case the user should rely only on the time to live of objects in the cache.
|
Pull |
When an update of an object that resides in the local view occurs in the master space,
the old value will be invalidated in the local cache. Any attempt to retrieve an object from the cache,
will enforce a reload of the updated value from the master space.
|
Push |
When an update of an object that resides in the local view occurs in the master space,
the local cache will be updated with the new value.
|