Berkeley DB Reference Guide:
Access Methods

PrevRefNext

Logical record numbers

The Berkeley DB B+tree, Queue and Recno access methods can operate on logical record numbers. In all cases for the Queue and Recno access methods, and in some cases with the B+tree access method, a record number is specified to reference a specific key/data pair. In the case of B+tree supporting duplicate data items, the logical record number refers to a key and all of its data items.

Record numbers are 32-bit unsigned types, which limits the number of logical records in a database to 4,294,967,296. The first record in the database is record number 1.

Record numbers in Recno databases can be configured to run in either mutable or fixed mode: mutable, where logical record numbers change as records are deleted or inserted, and fixed, where record numbers never change regardless of the database operation. (See Logically renumbering records (DB_RENUMBER) for more information.

Record numbers in B+tree databases are always mutable, and as records are deleted or inserted, the logical record number for other records in the database can change.

Record numbers in Queue databases are always fixed, and never change regardless of the database operation.

Configuring B+tree databases to support record numbers can severely limit the throughput of applications with multiple concurrent threads writing the database, because locations used to store record counts often become hot spots that many different threads all need to update.

PrevRefNext

Copyright Sleepycat Software