| Package | Description |
|---|---|
| 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 |
|---|---|
SearchResult |
Tree.getParentINForChildIN(IN child,
boolean useTargetLevel,
boolean doFetch,
CacheMode cacheMode)
Search for the parent P of a given IN C (where C is viewed as a logical
node; not as a java obj).
|
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.