| Package | Description |
|---|---|
| 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.log |
INTERNAL: Low level data storage including log entry sequential
logging/writing, random reading/fetching, and sequential reading.
|
| com.sleepycat.je.recovery |
INTERNAL: Performs recovery/startup processing during Environment open, and
checkpoints to bound recovery time.
|
| com.sleepycat.je.tree |
INTERNAL: Btree data structure (the JE main cache), including persistent
nodes classes, and Btree access methods.
|
| Modifier and Type | Method and Description |
|---|---|
Provisional |
EnvironmentImpl.coordinateWithCheckpoint(DatabaseImpl dbImpl,
int targetLevel,
IN parent)
Coordinates an eviction with an in-progress checkpoint and returns
whether provisional logging is needed.
|
| Modifier and Type | Field and Description |
|---|---|
Provisional |
LogParams.provisional
Whether the logged entry should be processed during recovery.
|
| Modifier and Type | Method and Description |
|---|---|
Provisional |
LogEntryHeader.getProvisional() |
static Provisional |
Provisional.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Provisional[] |
Provisional.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Constructor and Description |
|---|
LogEntryHeader(LogEntry entry,
Provisional provisional,
ReplicationContext repContext)
For writing a log header.
|
| Modifier and Type | Method and Description |
|---|---|
Provisional |
Checkpointer.coordinateEvictionWithCheckpoint(DatabaseImpl db,
int targetLevel,
IN parent)
Coordinates an eviction with an in-progress checkpoint and returns
whether provisional logging is needed.
|
| Modifier and Type | Method and Description |
|---|---|
long |
IN.log(boolean allowDeltas,
Provisional provisional,
boolean backgroundIO,
IN parent) |
static long |
IN.logEntry(INLogEntry<BIN> logEntry,
Provisional provisional,
boolean backgroundIO,
IN parent) |
Copyright © 2024. All rights reserved.