Package org.rocksdb

Class MutableDBOptions


public class MutableDBOptions extends AbstractMutableOptions
  • Method Details

    • builder

      Creates a builder which allows you to set MutableDBOptions in a fluent manner
      Returns:
      A builder for MutableDBOptions
    • parse

      public static MutableDBOptions.MutableDBOptionsBuilder parse(String str, boolean ignoreUnknown)
      Parses a String representation of MutableDBOptions

      The 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 options
      ignoreUnknown - what to do if the key is not one of the keys we expect
      Returns:
      A builder for the mutable db options
    • parse