MaxLocks Property

BerkeleyDB

The maximum number of locks supported by the Berkeley DB environment.

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

Syntax

C#
public uint MaxLocks { get; set; }
Visual Basic (Declaration)
Public Property MaxLocks As UInteger
Visual C++
public:
property unsigned int MaxLocks {
	unsigned int get ();
	void set (unsigned int value);
}

Remarks

This value is used by Open(String, DatabaseEnvironmentConfig) to estimate how much space to allocate for various lock-table data structures. The default value is 1000 lockers. For specific information on configuring the size of the lock subsystem, see Configuring locking: sizing the system in the Programmer's Reference Guide.

If the database environment already exists when Open(String, DatabaseEnvironmentConfig) is called, the value of MaxLocks will be ignored.

See Also