LogInMemory Property

BerkeleyDB

If true, transaction logs are maintained in memory rather than on disk. This means that transactions exhibit the ACI (atomicity, consistency, and isolation) properties, but not D (durability).

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

Syntax

C#
public bool LogInMemory { get; }
Visual Basic (Declaration)
Public ReadOnly Property LogInMemory As Boolean
Visual C++
public:
property bool LogInMemory {
	bool get ();
}

See Also