June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; public void set_lk_max_objects(int max) throws DbException;
Set the maximum number of simultaneously locked objects 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 objects. For specific information on configuring the size of the lock subsystem, see “Configuring Locking: Sizing the System.”
The DbEnv.set_lk_max_objects interface may only be used to configure Berkeley DB before the DbEnv.open interface is called.
The DbEnv.set_lk_max_objects method throws an exception that encapsulates a non-zero error value on failure.
The database environment’s ...