Table of Contents

Method SetRemoteStoreAccess

Namespace
Scaleout.Client
Assembly
Scaleout.Client.dll

SetRemoteStoreAccess(IList<string>)

Configures a list of remote stores that this cache should use to look for objects that are not found in the local store. Read calls will check remote stores in the order that they are listed. If a missing object is found in one of the specified remote stores then it will be replicated to the local store using GeoServer Pro replication.

public CacheBuilder<TKey, TValue> SetRemoteStoreAccess(IList<string> remoteStoreNames)

Parameters

remoteStoreNames IList<string>

Ordered list of remote store names, or null to disable remote store lookups. The specified remote store names must exactly match the names in the local store's GeoServer configuration.

Returns

CacheBuilder<TKey, TValue>

A builder object that can be used to further configure the cache.