Package org.rocksdb
Class MutableDBOptions
java.lang.Object
org.rocksdb.AbstractMutableOptions
org.rocksdb.MutableDBOptions
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic classNested classes/interfaces inherited from class org.rocksdb.AbstractMutableOptions
AbstractMutableOptions.AbstractMutableOptionsBuilder<T extends AbstractMutableOptions,U extends AbstractMutableOptions.AbstractMutableOptionsBuilder<T, U, K>, K extends MutableOptionKey> -
Field Summary
Fields inherited from class org.rocksdb.AbstractMutableOptions
KEY_VALUE_PAIR_SEPARATOR, KEY_VALUE_SEPARATOR, keys -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder which allows you to set MutableDBOptions in a fluent mannerParses a String representation of MutableDBOptionsMethods inherited from class org.rocksdb.AbstractMutableOptions
toString
-
Method Details
-
builder
Creates a builder which allows you to set MutableDBOptions in a fluent manner- Returns:
- A builder for MutableDBOptions
-
parse
Parses a String representation of MutableDBOptionsThe format is: key1=value1;key2=value2;key3=value3 etc
For int[] values, each int should be separated by a comma, e.g.
key1=value1;intArrayKey1=1:2:3
- Parameters:
str- The string representation of the mutable db optionsignoreUnknown- what to do if the key is not one of the keys we expect- Returns:
- A builder for the mutable db options
-
parse
-