| Package | Description |
|---|---|
| com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
| Modifier and Type | Field | Description |
|---|---|---|
static DiskOrderedCursorConfig |
DiskOrderedCursorConfig.DEFAULT |
Default configuration used if null is passed to methods that create a
cursor.
|
| Modifier and Type | Method | Description |
|---|---|---|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.clone() |
Returns a copy of this configuration object.
|
DiskOrderedCursorConfig |
DiskOrderedCursor.getConfig() |
Returns this cursor's configuration.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setBINsOnly(boolean binsOnly) |
Specify whether the DiskOrderedCursor should scan the BINs only.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setInternalMemoryLimit(long internalMemoryLimit) |
Set the maximum amount of JE Cache Memory that the DiskOrderedScan
can use at one time.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setKeysOnly(boolean keysOnly) |
Specify whether the DiskOrderedCursor should return only the key or key
+ data.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setLSNBatchSize(long lsnBatchSize) |
Set the maximum number of LSNs to gather and sort at any one time.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setMaxSeedMillisecs(long maxSeedMillisecs) |
Deprecated.
this method has no effect and will be removed in a future
release.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setMaxSeedNodes(long maxSeedNodes) |
Deprecated.
this method has no effect and will be removed in a future
release.
|
DiskOrderedCursorConfig |
DiskOrderedCursorConfig.setQueueSize(int queueSize) |
Set the queue size for entries being passed between the
DiskOrderedCursor producer thread and the application's consumer
thread.
|
| Modifier and Type | Method | Description |
|---|---|---|
DiskOrderedCursor |
Database.openCursor(DiskOrderedCursorConfig cursorConfig) |
Create a DiskOrderedCursor to iterate over the records in 'this'
Database.
|
DiskOrderedCursor |
Environment.openDiskOrderedCursor(Database[] databases,
DiskOrderedCursorConfig config) |
Create a DiskOrderedCursor to iterate over the records of a given set
of databases.
|
Copyright (c) 2002, 2018 Oracle and/or its affiliates. All rights reserved.