This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Creates a cache manager

Namespace: Smartsite.Tools.Caching
Assembly:  Smartsite.Tools (in Smartsite.Tools.dll)

Syntax

C#Copy imageCopy Code
public static  Create(
	 backingStore,
	int maximumElementsInCacheBeforeScavenging,
	int numberToRemoveWhenScavenging,
	int expirationPollFrequencyInSeconds
)
Visual Basic (Declaration)Copy imageCopy Code
Public Shared Function Create ( _
	backingStore As , _
	maximumElementsInCacheBeforeScavenging As Integer, _
	numberToRemoveWhenScavenging As Integer, _
	expirationPollFrequencyInSeconds As Integer _
) As 

Parameters

backingStore
IBackingStore
The backing store.
maximumElementsInCacheBeforeScavenging
Int32
The maximum elements in cache before scavenging.
numberToRemoveWhenScavenging
Int32
The number to remove when scavenging.
expirationPollFrequencyInSeconds
Int32
The expiration poll frequency in seconds.

Return Value

See Also

Advanced