| Package | Description |
|---|---|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| com.sleepycat.je.dbi |
INTERNAL: Underlying XxxImpl classes for Environment, Database and Cursor,
plus other misc classes (originally, dbi meant "db internal interface").
|
| com.sleepycat.je.recovery |
INTERNAL: Performs recovery/startup processing during Environment open, and
checkpoints to bound recovery time.
|
| Modifier and Type | Field and Description |
|---|---|
static CheckpointConfig |
CheckpointConfig.DEFAULT
Default configuration used if null is passed to
Environment.checkpoint. |
| Modifier and Type | Method and Description |
|---|---|
CheckpointConfig |
CheckpointConfig.clone()
Returns a copy of this configuration object.
|
CheckpointConfig |
CheckpointConfig.setForce(boolean force)
Configures the checkpoint force option.
|
CheckpointConfig |
CheckpointConfig.setKBytes(int kBytes)
Configures the checkpoint log data threshold, in kilobytes.
|
CheckpointConfig |
CheckpointConfig.setMinimizeRecoveryTime(boolean minimizeRecoveryTime)
Configures the minimize recovery time option.
|
CheckpointConfig |
CheckpointConfig.setMinutes(int minutes)
Configures the checkpoint time threshold, in minutes.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Environment.checkpoint(CheckpointConfig ckptConfig)
Synchronously checkpoint the database environment.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EnvironmentImpl.invokeCheckpoint(CheckpointConfig config,
String invokingSource)
Invoke a checkpoint programmatically.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Checkpointer.doCheckpoint(CheckpointConfig config,
String invokingSource,
boolean invokedFromDaemon)
The real work to do a checkpoint.
|
Copyright © 2024. All rights reserved.