June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; public void set_lk_max_lockers(int max) throws DbException;
Set the maximum number of simultaneous locking entities supported by the Berkeley DB Locking subsystem. This value is used by DbEnv.open 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.”
The DbEnv.set_lk_max_lockers interface may only be used to configure Berkeley DB before the DbEnv.open interface is called.
The DbEnv.set_lk_max_lockers method throws an exception that encapsulates a non-zero error value on failure.
The database environment’s ...