NamedCacheSetRemoteStores Method

ScaleOut Software NamedCache API
Configures a list of remote stores that this NamedCache 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 pull replication.

Namespace:  Soss.Client
Assembly:  soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax

public void SetRemoteStores(
	RemoteStoreCollection remoteStores
)

Parameters

remoteStores
Type: Soss.ClientRemoteStoreCollection
An ordered collection of RemoteStore objects, or null to disable remote store lookups. The specified remote store names must exactly match the names in the local store's GeoServer configuration.
Exceptions

ExceptionCondition
InvalidOperationExceptionThrown if the named cache has been configured to perform backing store operations through a call to SetBackingStoreAdapter(IBackingStore, BackingStorePolicy).
Remarks

Backing store operations cannot be used in conjunction with GeoServer pull replication.

See Also

Reference