| 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.tree |
INTERNAL: Btree data structure (the JE main cache), including persistent
nodes classes, and Btree access methods.
|
| Modifier and Type | Method and Description |
|---|---|
List<TrackingInfo> |
CursorImpl.getAncestorPath()
Returns the stack of ancestor TrackingInfo for the BIN at the cursor, or
null if a split occurs and the information returned would be
inconsistent.
|
| Modifier and Type | Method and Description |
|---|---|
SearchResult |
Tree.getParentINForChildIN(IN child,
boolean useTargetLevel,
boolean doFetch,
CacheMode cacheMode,
List<TrackingInfo> trackingList)
This version of getParentINForChildIN does the same thing as the version
above, but also adds a "trackingList" param.
|
SearchResult |
Tree.getParentINForChildIN(long targetNodeId,
byte[] targetKey,
int targetLevel,
int exclusiveLevel,
boolean requireExactMatch,
boolean doFetch,
CacheMode cacheMode,
List<TrackingInfo> trackingList)
This version of getParentINForChildIN() is the actual implementation
of the previous 2 versions (read the comments there), but it also
implements one additional use cases via the extra "requireExactMatch"
param.
|
Copyright © 2024. All rights reserved.