Package | Description |
---|---|
com.sleepycat.je |
Foundation for creating environments, databases and transactions; provides
cursor based data access.
|
Modifier and Type | Class and Description |
---|---|
class |
EnvironmentConfig
Specifies the attributes of an environment.
|
Modifier and Type | Method and Description |
---|---|
protected EnvironmentMutableConfig |
EnvironmentMutableConfig.clone() |
static EnvironmentMutableConfig |
DbInternal.cloneMutableConfig(EnvironmentMutableConfig config)
Proxy to EnvironmentMutableConfig.cloneMutableConfig()
|
EnvironmentMutableConfig |
Environment.getMutableConfig()
Returns database environment attributes.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setCacheMode(CacheMode cacheMode)
Sets the default
CacheMode used for operations performed in this
environment. |
EnvironmentMutableConfig |
EnvironmentMutableConfig.setCachePercent(int percent)
By default, JE sets its cache size proportionally to the JVM
memory.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setCacheSize(long totalBytes)
Configures the memory available to the database system, in bytes.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setConfigParam(String paramName,
String value)
Set this configuration parameter.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setDurability(Durability durability)
Configures the durability associated with transactions.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setExceptionListener(ExceptionListener exceptionListener)
Sets the exception listener for an Environment.
|
EnvironmentMutableConfig |
EnvironmentMutableConfig.setTxnNoSync(boolean noSync)
Deprecated.
replaced by
setDurability(com.sleepycat.je.Durability) |
EnvironmentMutableConfig |
EnvironmentMutableConfig.setTxnWriteNoSync(boolean writeNoSync)
Deprecated.
replaced by
setDurability(com.sleepycat.je.Durability) |
Modifier and Type | Method and Description |
---|---|
static void |
DbInternal.checkImmutablePropsForEquality(EnvironmentMutableConfig config,
Properties handleConfigProps)
Proxy to EnvironmentMutableConfig.checkImmutablePropsForEquality()
|
static EnvironmentMutableConfig |
DbInternal.cloneMutableConfig(EnvironmentMutableConfig config)
Proxy to EnvironmentMutableConfig.cloneMutableConfig()
|
static void |
DbInternal.copyMutablePropsTo(EnvironmentMutableConfig config,
EnvironmentMutableConfig toConfig)
Proxy to EnvironmentMutableConfig.copyMutablePropsTo()
|
static void |
DbInternal.disableParameterValidation(EnvironmentMutableConfig config)
Proxy to EnvironmentMutableConfig.validateParams.
|
static Properties |
DbInternal.getProps(EnvironmentMutableConfig config)
Proxy to EnvironmentMutableConfig.getProps
|
void |
Environment.setMutableConfig(EnvironmentMutableConfig mutableConfig)
Sets database environment attributes.
|
Copyright (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.