Flush modified pages in the cache with log sequence numbers less
than minLSN to their backing files.
Namespace:
BerkeleyDBAssembly: libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0
Syntax
C# |
---|
public void SyncMemPool( LSN minLSN ) |
Visual Basic (Declaration) |
---|
Public Sub SyncMemPool ( _ minLSN As LSN _ ) |
Visual C++ |
---|
public: void SyncMemPool( LSN^ minLSN ) |
Parameters
- minLSN
- Type: BerkeleyDB..::.LSN
All modified pages with a log sequence number less than the minLSN parameter are written to disk. If null, all modified pages in the cache are written to disk.
Remarks
Pages in the cache that cannot be immediately written back to disk
(for example, pages that are currently in use by another thread of
control) are waited for and written to disk as soon as it is
possible to do so.