Runs this policy against the specified cache until a target number of bytes have been evicted from the cache
Namespace: BrightstarDB.CachingAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public void Run(
AbstractCache cache,
long target
) |
Visual Basic |
---|
Public Sub Run (
cache As AbstractCache,
target As Long
) |
Visual C++ |
---|
public:
virtual void Run(
AbstractCache^ cache,
long long target
) sealed |
F# |
---|
abstract Run :
cache : AbstractCache *
target : int64 -> unit
override Run :
cache : AbstractCache *
target : int64 -> unit |
Parameters
- cache
- Type: BrightstarDB.Caching..::..AbstractCache
The cache to run against
- target
- Type: System..::..Int64
The target number of bytes to be evicted from the cache
Implements
ICacheEvictionPolicy..::..Run(AbstractCache, Int64)
See Also