The initial number of log identifier entities created by the Berkeley DB environment

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0

Syntax

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

Remarks

This value is used by Open(String, DatabaseEnvironmentConfig) to force Berkeley DB to allocate a certain number of log identifier objects when the environment is created. This can be useful if an application uses a large number of log identifier objects, and experiences performance issues with the default dynamic allocation algorithm.

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

See Also