Removes the entry with the specified key from the cache

Namespace: BrightstarDB.Caching
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
protected override long RemoveEntry(
	string key
)
Visual Basic
Protected Overrides Function RemoveEntry ( 
	key As String
) As Long
Visual C++
protected:
virtual long long RemoveEntry(
	String^ key
) override
F#
abstract RemoveEntry : 
        key : string -> int64 
override RemoveEntry : 
        key : string -> int64 

Parameters

key
Type: System..::..String
The key of the entry to be removed

Return Value

Type: Int64
The number of bytes of data evicted from the cache as a result of this operation. May be 0 if the key was not found in the cache.

See Also