Priority Property

BerkeleyDB

The cache priority for pages referenced by the cursor.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public CachePriority Priority { get; set; }
Visual Basic (Declaration)
Public Property Priority As CachePriority
Visual C++
public:
property CachePriority^ Priority {
	CachePriority^ get ();
	void set (CachePriority^ value);
}

Remarks

The priority of a page biases the replacement algorithm to be more or less likely to discard a page when space is needed in the buffer pool. The bias is temporary, and pages will eventually be discarded if they are not referenced again. The setting is only advisory, and does not guarantee pages will be treated in a specific way.

See Also