diff --git a/docs/rocksdict.html b/docs/rocksdict.html index 01a85fc..4164f98 100644 --- a/docs/rocksdict.html +++ b/docs/rocksdict.html @@ -3,7 +3,7 @@
- +This package is built for macOS (x86/arm), Windows 64/32, and Linux x86. +
This package is built for macOS (x86/arm), Windows 64/32, and Linux x86/arm.
It can be installed from pypi with pip install rocksdict
.
::
@@ -1264,10 +1279,11 @@Examples
31 "Env", 32 "FifoCompactOptions", 33 "CompactOptions", -34 "BottommostLevelCompaction"] -35 -36Rdict.__enter__ = lambda self: self -37Rdict.__exit__ = lambda self, exc_type, exc_val, exc_tb: self.close() +34 "BottommostLevelCompaction", +35 "KeyEncodingType"] +36 +37Rdict.__enter__ = lambda self: self +38Rdict.__exit__ = lambda self, exc_type, exc_val, exc_tb: self.close() @@ -1284,7 +1300,7 @@Examples
A persistent on-disk dictionary. Supports string, int, float, bytes as key, values.
-Example
+Example:
-::
@@ -1300,7 +1316,7 @@Example
Args
+Arguments:
- path (str): path to the database
@@ -1369,7 +1385,7 @@Args
Optionally disable WAL or sync for this write.
-Example
+Example:
::
@@ -1426,7 +1442,7 @@Example
Get value from key.
-Args
+Arguments:
-
- key: the key or list of keys.
@@ -1435,7 +1451,7 @@Args
(or use Rdict.set_read_options to preset a read options used by default).Returns
+Returns:
None or default value if the key does not exist.
@@ -1456,7 +1472,7 @@Returns
Insert key value into database.
-Args
+Arguments:
- key: the key.
@@ -1480,7 +1496,7 @@Args
Check if a key may exist without doing any IO.
-Notes
+Notes:
-If the key definitely does not exist in the database, @@ -1506,14 +1522,14 @@
Notes
Args
+Arguments:
-
- key: Key to check
- read_opt: ReadOptions
Returns
+Returns:
if
fetch = False
, @@ -1540,7 +1556,7 @@Returns
Delete entry from the database.
-Args
+Arguments:
- key: the key.
@@ -1563,7 +1579,7 @@Args
Reversible for iterating over keys and values.
-Examples
+Examples:
-::
@@ -1603,7 +1619,7 @@Examples
Args
+Arguments:
- read_opt: ReadOptions
@@ -1626,7 +1642,7 @@Args
Iterate through all keys and values pairs.
-Examples
+Examples:
-::
@@ -1636,7 +1652,7 @@Examples
Args
+Arguments:
- backwards: iteration direction, forward if
@@ -1661,7 +1677,7 @@False
.Args
Iterate through all keys
-Examples
+Examples:
-::
@@ -1670,7 +1686,7 @@Examples
Args
+Arguments:
- backwards: iteration direction, forward if
@@ -1695,7 +1711,7 @@False
.Args
Iterate through all values.
-Examples
+Examples:
-::
@@ -1704,7 +1720,7 @@Examples
Args
+Arguments:
- backwards: iteration direction, forward if
@@ -1729,7 +1745,7 @@False
.Args
Manually flush the current column family.
-Notes
+Notes:
-Manually call mem-table flush. @@ -1738,7 +1754,7 @@
Notes
key-value pairs have been flushed to the disk.Args
+Arguments:
- wait (bool): whether to wait for the flush to finish.
@@ -1775,14 +1791,14 @@Args
Creates column family with given name and options.
-Args
+Arguments:
-
- name: name of this column family
- options: Rdict Options for this column family
Return
+Return:
the newly created column family
@@ -1818,14 +1834,14 @@Return
Get a column family Rdict
-Args
+Arguments:
-
- name: name of this column family
- options: Rdict Options for this column family
Return
+Return:
the column family Rdict of this name
@@ -1846,7 +1862,7 @@Return
Use this method to obtain a ColumnFamily instance, which can be used in WriteBatch.
-Example
+Example:
::
@@ -1879,7 +1895,7 @@Example
A snapshot of the current column family.
-Examples
+Examples:
::
@@ -1927,7 +1943,7 @@Examples
Loads a list of external SST files created with SstFileWriter into the current column family.
-Args
+Arguments:
- paths: a list a paths
@@ -1980,13 +1996,13 @@Args
WriteBatch
-Notes
+Notes:
-This WriteBatch does not write to the current column family.
Args
+Arguments:
- write_batch: WriteBatch instance. This instance will be consumed.
@@ -2008,7 +2024,7 @@Args
Removes the database entries in the range
-["from", "to")
of the current column family.Args
+Arguments:
- begin: included
@@ -2031,7 +2047,7 @@Args
Flush memory to disk, and drop the current column family.
-Notes
+Notes:
Calling
db.close()
is nearly equivalent to first calling @@ -2168,7 +2184,7 @@Notes
Delete the database.
-Args
+Arguments:
- path (str): path to this database
@@ -2190,7 +2206,7 @@Args
Repair the database.
-Args
+Arguments:
- path (str): path to this database
@@ -2226,14 +2242,14 @@Args
WriteBatch class. Use db.write() to ingest WriteBatch.
-Notes
+Notes:
-A WriteBatch instance can only be ingested once, otherwise an Exception will be raised.
Args
+Arguments:
- raw_mode (bool): make sure that this is consistent with the Rdict.
@@ -2282,7 +2298,7 @@Args
You can also use
-put(key, value, column_family)
to explicitly choose column family.Args
+Arguments:
- - column_family (ColumnFamily | None): column family descriptor or None (for default family).
@@ -2348,7 +2364,7 @@Args
Insert a value into the database under the given key.
-Args
+Arguments:
- column_family: override the default column family set by set_default_column_family
@@ -2369,7 +2385,7 @@Args
Removes the database entry for key. Does nothing if the key was not found.
-Args
+Arguments:
- column_family: override the default column family set by set_default_column_family
@@ -2390,7 +2406,7 @@Args
Remove database entries in column family from start key to end key.
-Notes
+Notes:
-Removes the database entries in the range ["begin_key", "end_key"), i.e., @@ -2398,7 +2414,7 @@
Notes
keys exist in the range ["begin_key", "end_key").Args
+Arguments:
- begin: begin key
@@ -2438,7 +2454,7 @@Args
SstFileWriter is used to create sst files that can be added to database later All keys in files generated by SstFileWriter will have sequence number = 0.
-Args
+Arguments:
- options: this options must have the same
@@ -2531,7 +2547,7 @@raw_mode
as the Rdict DB.Args
Define DB Access Types.
-Notes
+Notes:
-There are four access types:
@@ -2544,7 +2560,7 @@Notes
Examples
+Examples:
::
@@ -2588,7 +2604,7 @@Examples
Define DB Access Types.
-Notes
+Notes:
-There are four access types:
@@ -2601,7 +2617,7 @@Notes
Examples
+Examples:
::
@@ -2634,7 +2650,7 @@Examples
Define DB Access Types.
-Notes
+Notes:
-There are four access types:
@@ -2647,7 +2663,7 @@Notes
Examples
+Examples:
::
@@ -2680,7 +2696,7 @@Examples
Define DB Access Types.
-Notes
+Notes:
-There are four access types:
@@ -2693,7 +2709,7 @@Notes
Examples
+Examples:
::
@@ -2726,7 +2742,7 @@Examples
Define DB Access Types.
-Notes
+Notes:
-There are four access types:
@@ -2739,7 +2755,7 @@Notes
Examples
+Examples:
::
@@ -2773,7 +2789,7 @@Examples
-Optionally disable WAL or sync for this write.
-Example
+Example:
::
@@ -2814,19 +2830,17 @@Example
+- low_pri + sync- + --If true, this write request is of lower priority if compaction is -behind. In this case, no_slowdown = true, the request will be cancelled -immediately with Status::Incomplete() returned. Otherwise, it will be -slowed down. The slowdown value is determined by RocksDB to guarantee -it introduces minimum impacts to high priority writes.
+@@ -2867,52 +2881,54 @@Sets the sync mode. If true, the write will be flushed +from the operating system buffer cache before the write is considered complete. +If this flag is true, writes will be slower.
Default: false
Example
+- sync + low_pri- + --Sets the sync mode. If true, the write will be flushed -from the operating system buffer cache before the write is considered complete. -If this flag is true, writes will be slower.
+If true, this write request is of lower priority if compaction is +behind. In this case, no_slowdown = true, the request will be cancelled +immediately with Status::Incomplete() returned. Otherwise, it will be +slowed down. The slowdown value is determined by RocksDB to guarantee +it introduces minimum impacts to high priority writes.
Default: false
+- memtable_insert_hint_per_batch + no_slowdown- + --If true, writebatch will maintain the last insert positions of each -memtable as hints in concurrent write. It can improve write performance -in concurrent writes if keys in one writebatch are sequential. In -non-concurrent writes (when concurrent_memtable_writes is false) this -option will be ignored.
+If true and we need to wait or sleep for the write request, fails +immediately with Status::Incomplete().
Default: false
+- no_slowdown + memtable_insert_hint_per_batch- + -If true and we need to wait or sleep for the write request, fails -immediately with Status::Incomplete().
+@@ -2932,7 +2948,7 @@If true, writebatch will maintain the last insert positions of each +memtable as hints in concurrent write. It can improve write performance +in concurrent writes if keys in one writebatch are sequential. In +non-concurrent writes (when concurrent_memtable_writes is false) this +option will be ignored.
Default: false
Example
A consistent view of the database at the point of creation.
-Examples
+Examples:
::
@@ -2991,7 +3007,7 @@Examples
Creates an iterator over the data in this snapshot under the given column family, using the default read options.
-Args
+Arguments:
- read_opt: ReadOptions, must have the same
@@ -3012,7 +3028,7 @@raw_mode
argument.Args
Iterate through all keys and values pairs.
-Args
+Arguments:
- backwards: iteration direction, forward if
@@ -3037,7 +3053,7 @@False
.Args
Iterate through all keys.
-Args
+Arguments:
- backwards: iteration direction, forward if
@@ -3062,7 +3078,7 @@False
.Args
Iterate through all values.
-Args
+Arguments:
- backwards: iteration direction, forward if
@@ -3151,7 +3167,7 @@False
.Args
Seeks to the first key in the database.
-Example
+Example:
::
@@ -3193,7 +3209,7 @@Example
Seeks to the last key in the database.
-Example
+Example:
::
@@ -3238,7 +3254,7 @@Example
This method will attempt to seek to the specified key. If that key does not exist, it will find and seek to the key that lexicographically follows it instead.
-Example
+Example:
::
@@ -3277,7 +3293,7 @@Example
The difference with.seek()
is that if the specified key do not exist, this method will seek to key that lexicographically precedes it instead. -Example
+Example:
::
@@ -3376,7 +3392,7 @@Example
Please read the official tuning guide and most importantly, measure performance under realistic workloads with realistic hardware.
-Example
+Example:
-::
@@ -3407,7 +3423,7 @@Example
Args
+Arguments:
- raw_mode (bool): set this to True to operate in raw mode (i.e. @@ -3685,7 +3701,7 @@
Args
Default:
-DBCompressionType::Snappy
(DBCompressionType::None
if snappy feature is not enabled).Example
+Example:
::
@@ -3718,7 +3734,7 @@Example
each level of the database; these override the value specified in the previous field 'compression'. -Example
+Example:
::
@@ -4878,7 +4894,7 @@Example
See official wiki for more information. Defaults to using a skiplist. -Example
+Example:
::
@@ -4926,7 +4942,7 @@Example
BlockBasedTableOptions). See official wiki for more information on this table format. -Example
+Example:
::
@@ -4966,7 +4982,7 @@Example
See official wiki for more information. -Example
+Example:
::
@@ -5447,7 +5463,7 @@Example
Default: 0
-Example
+Example:
::
@@ -5501,7 +5517,7 @@Example
Default: 0
-Example
+Example:
::
@@ -5623,7 +5639,7 @@Example
+ +ReadOptions allows setting iterator bounds and so on.
-Args
+Arguments:
- raw_mode (bool): this must be the same as
Options
raw_mode @@ -6279,7 +6295,7 @@Args
-Defines the index type to be used for SS-table lookups.
-Example
+Example:
::
@@ -6407,7 +6423,7 @@Example
+Set the data block index type for point lookups
+-Set the data block index type for point lookups:
DataBlockIndexType::BinarySearch
to use binary search within the data block. @@ -6420,7 +6436,7 @@Example
Default:
-BinarySearch
Example
+Example:
::
@@ -6491,7 +6507,7 @@Example
See official wiki for more information. -Defaults
+Defaults:
user_key_length: 0 (variable length) @@ -6660,38 +6676,6 @@
Defaults
---- min_merge_width - - -- - -- - -Sets the minimum number of files in a single compaction run.
- -Default: 2
--- size_ratio - - -- - -- -Sets the percentage flexibility while comparing file size. -If the candidate file(s) size is 1% smaller than the next file's size, -then include next file into this candidate set.
- -Default: 1
-+@@ -6747,6 +6731,23 @@+Defaults
++ size_ratio + + ++ + ++ +Sets the percentage flexibility while comparing file size. +If the candidate file(s) size is 1% smaller than the next file's size, +then include next file into this candidate set.
+ +Default: 1
++@@ -6777,6 +6778,21 @@+Defaults
++ min_merge_width + + ++ + ++ +Sets the minimum number of files in a single compaction run.
+ +Default: 2
+@@ -7260,7 +7276,7 @@ Defaults
Below is an example to set compaction style to Fifo.
-Example
+Example:
::
@@ -7351,7 +7367,7 @@Example
Below is an example to set compression type to Snappy.
-Example
+Example:
::
@@ -7491,7 +7507,7 @@Example
Below is an example to set recovery mode to PointInTime.
-Example
+Example:
::
@@ -7969,6 +7985,63 @@Example
+ diff --git a/docs/search.js b/docs/search.js index 04710e1..feacc28 100644 --- a/docs/search.js +++ b/docs/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u+ + class + KeyEncodingType: + + ++ + ++ + + + +Used in
+PlainTableFactoryOptions
.0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e 1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o Abstract\n\n This package enables users to store, query, and delete\na large number of key-value pairs on disk.
\n\nThis is especially useful when the data cannot fit into RAM.\nIf you have hundreds of GBs or many TBs of key-value data to store\nand query from, this is the package for you.
\n\nInstallation
\n\nThis package is built for macOS (x86/arm), Windows 64/32, and Linux x86.\nIt can be installed from pypi with
\n\npip install rocksdict
.Introduction
\n\nBelow is a code example that shows how to do the following:
\n\n\n
\n\n- Create Rdict
\n- Store something on disk
\n- Close Rdict
\n- Open Rdict again
\n- Check Rdict elements
\n- Iterate from Rdict
\n- Batch get
\n- Delete storage
\nExamples
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict, Options\n\npath = str(\"./test_dict\")\n\n# create a Rdict with default options at `path`\ndb = Rdict(path)\n\n# storing numbers\ndb[1.0] = 1\ndb[1] = 1.0\ndb[\"huge integer\"] = 2343546543243564534233536434567543\ndb[\"good\"] = True\ndb[\"bad\"] = False\ndb[\"bytes\"] = b\"bytes\"\ndb[\"this is a list\"] = [1, 2, 3]\ndb[\"store a dict\"] = {0: 1}\n\n# for example numpy array\nimport numpy as np\nimport pandas as pd\ndb[b\"numpy\"] = np.array([1, 2, 3])\ndb[\"a table\"] = pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]})\n\n# close Rdict\ndb.close()\n\n# reopen Rdict from disk\ndb = Rdict(path)\nassert db[1.0] == 1\nassert db[1] == 1.0\nassert db[\"huge integer\"] == 2343546543243564534233536434567543\nassert db[\"good\"] == True\nassert db[\"bad\"] == False\nassert db[\"bytes\"] == b\"bytes\"\nassert db[\"this is a list\"] == [1, 2, 3]\nassert db[\"store a dict\"] == {0: 1}\nassert np.all(db[b\"numpy\"] == np.array([1, 2, 3]))\nassert np.all(db[\"a table\"] == pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]}))\n\n# iterate through all elements\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# batch get:\nprint(db[[\"good\", \"bad\", 1.0]])\n# [True, False, 1]\n\n# delete Rdict from dict\ndb.close()\nRdict.destroy(path)\n
Supported types:
\n\n\n
\n"}, "rocksdict.Rdict": {"fullname": "rocksdict.Rdict", "modulename": "rocksdict", "qualname": "Rdict", "type": "class", "doc": "- key:
\nint, float, bool, str, bytes
- value:
\nint, float, bool, str, bytes
and anything that\nsupportspickle
.A persistent on-disk dictionary. Supports string, int, float, bytes as key, values.
\n\nExample
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"./test_dir\")\ndb[0] = 1\n\ndb = None\ndb = Rdict(\"./test_dir\")\nassert(db[0] == 1)\n
Args
\n\n\n
\n"}, "rocksdict.Rdict.__init__": {"fullname": "rocksdict.Rdict.__init__", "modulename": "rocksdict", "qualname": "Rdict.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.Rdict.set_dumps": {"fullname": "rocksdict.Rdict.set_dumps", "modulename": "rocksdict", "qualname": "Rdict.set_dumps", "type": "function", "doc": "- path (str): path to the database
\n- options (Options): Options object
\n- column_families (dict): (name, options) pairs, these
\nOptions
\nmust have the sameraw_mode
argument as the mainOptions
.\nA column family called 'default' is always created.- access_type (AccessType): there are four access types:\nReadWrite, ReadOnly, WithTTL, and Secondary, use\nAccessType class to create.
\nset custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, "rocksdict.Rdict.set_loads": {"fullname": "rocksdict.Rdict.set_loads", "modulename": "rocksdict", "qualname": "Rdict.set_loads", "type": "function", "doc": "set custom loads function
\n", "signature": "(self, /, loads):", "funcdef": "def"}, "rocksdict.Rdict.set_write_options": {"fullname": "rocksdict.Rdict.set_write_options", "modulename": "rocksdict", "qualname": "Rdict.set_write_options", "type": "function", "doc": "Optionally disable WAL or sync for this write.
\n\nExample
\n\n\n\n", "signature": "(self, /, write_opt):", "funcdef": "def"}, "rocksdict.Rdict.set_read_options": {"fullname": "rocksdict.Rdict.set_read_options", "modulename": "rocksdict", "qualname": "Rdict.set_read_options", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, WriteBatch, WriteOptions\n\npath = \"_path_for_rocksdb_storageY1\"\ndb = Rdict(path)\n\n# set write options\nwrite_options = WriteOptions()\nwrite_options.set_sync(False)\nwrite_options.disable_wal(True)\ndb.set_write_options(write_options)\n\n# write to db\ndb[\"my key\"] = \"my value\"\ndb[\"key2\"] = \"value2\"\ndb[\"key3\"] = \"value3\"\n\n# remove db\ndel db\nRdict.destroy(path)\n
Configure Read Options for all the get operations.
\n", "signature": "(self, /, read_opt):", "funcdef": "def"}, "rocksdict.Rdict.get": {"fullname": "rocksdict.Rdict.get", "modulename": "rocksdict", "qualname": "Rdict.get", "type": "function", "doc": "Get value from key.
\n\nArgs
\n\n\n
\n\n- key: the key or list of keys.
\n- default: the default value to return if key not found.
\n- read_opt: override preset read options\n(or use Rdict.set_read_options to preset a read options used by default).
\nReturns
\n\n\n\n", "signature": "(self, /, key, default=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.put": {"fullname": "rocksdict.Rdict.put", "modulename": "rocksdict", "qualname": "Rdict.put", "type": "function", "doc": "None or default value if the key does not exist.
\nInsert key value into database.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, key, value, write_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.key_may_exist": {"fullname": "rocksdict.Rdict.key_may_exist", "modulename": "rocksdict", "qualname": "Rdict.key_may_exist", "type": "function", "doc": "- key: the key.
\n- value: the value.
\n- write_opt: override preset write options\n(or use Rdict.set_write_options to preset a write options used by default).
\nCheck if a key may exist without doing any IO.
\n\nNotes
\n\n\n\n\nIf the key definitely does not exist in the database,\n then this method returns False, else True.\n If the caller wants to obtain value when the key is found in memory,\n fetch should be set to True.\n This check is potentially lighter-weight than invoking DB::get().\n One way to make this lighter weight is to avoid doing any IOs.
\n \nThe API follows the following principle:
\n \n\n
\n \n- True, and value found => the key must exist.
\n- True => the key may or may not exist.
\n- False => the key definitely does not exist.
\nFlip it around:
\n \n\n
\n- key exists => must return True, but value may or may not be found.
\n- key doesn't exists => might still return True.
\nArgs
\n\n\n
\n\n- key: Key to check
\n- read_opt: ReadOptions
\nReturns
\n\n\n\n", "signature": "(self, /, key, fetch=False, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.delete": {"fullname": "rocksdict.Rdict.delete", "modulename": "rocksdict", "qualname": "Rdict.delete", "type": "function", "doc": "if
\nfetch = False
,\n returning True implies that the key may exist.\n returning False implies that the key definitely does not exist.\n iffetch = True
,\n returning (True, value) implies that the key is found and definitely exist.\n returning (False, None) implies that the key definitely does not exist.\n returning (True, None) implies that the key may exist.Delete entry from the database.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, key, write_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.iter": {"fullname": "rocksdict.Rdict.iter", "modulename": "rocksdict", "qualname": "Rdict.iter", "type": "function", "doc": "- key: the key.
\n- write_opt: override preset write options\n(or use Rdict.set_write_options to preset a write options used by default).
\nReversible for iterating over keys and values.
\n\nExamples
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage5\"\ndb = Rdict(path)\n\nfor i in range(50):\n db[i] = i ** 2\n\niter = db.iter()\n\niter.seek_to_first()\n\nj = 0\nwhile iter.valid():\n assert iter.key() == j\n assert iter.value() == j ** 2\n print(f\"{iter.key()} {iter.value()}\")\n iter.next()\n j += 1\n\niter.seek_to_first();\nassert iter.key() == 0\nassert iter.value() == 0\nprint(f\"{iter.key()} {iter.value()}\")\n\niter.seek(25)\nassert iter.key() == 25\nassert iter.value() == 625\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path)\n
Args
\n\n\n
\n\n- read_opt: ReadOptions
\nReturns: Reversible
\n", "signature": "(self, /, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.items": {"fullname": "rocksdict.Rdict.items", "modulename": "rocksdict", "qualname": "Rdict.items", "type": "function", "doc": "Iterate through all keys and values pairs.
\n\nExamples
\n\n\n\n\n::
\n\n\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n
Args
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.keys": {"fullname": "rocksdict.Rdict.keys", "modulename": "rocksdict", "qualname": "Rdict.keys", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions
\nIterate through all keys
\n\nExamples
\n\n\n\n\n::
\n\n\nall_keys = [k for k in db.keys()]\n
Args
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.values": {"fullname": "rocksdict.Rdict.values", "modulename": "rocksdict", "qualname": "Rdict.values", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions
\nIterate through all values.
\n\nExamples
\n\n\n\n\n::
\n\n\nall_keys = [v for v in db.values()]\n
Args
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.flush": {"fullname": "rocksdict.Rdict.flush", "modulename": "rocksdict", "qualname": "Rdict.flush", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Manually flush the current column family.
\n\nNotes
\n\n\n\n\nManually call mem-table flush.\n It is recommended to call flush() or close() before\n stopping the python program, to ensure that all written\n key-value pairs have been flushed to the disk.
\nArgs
\n\n\n
\n", "signature": "(self, /, wait=True):", "funcdef": "def"}, "rocksdict.Rdict.flush_wal": {"fullname": "rocksdict.Rdict.flush_wal", "modulename": "rocksdict", "qualname": "Rdict.flush_wal", "type": "function", "doc": "- wait (bool): whether to wait for the flush to finish.
\nFlushes the WAL buffer. If
\n", "signature": "(self, /, sync=True):", "funcdef": "def"}, "rocksdict.Rdict.create_column_family": {"fullname": "rocksdict.Rdict.create_column_family", "modulename": "rocksdict", "qualname": "Rdict.create_column_family", "type": "function", "doc": "sync
is set totrue
, also syncs\nthe data to disk.Creates column family with given name and options.
\n\nArgs
\n\n\n
\n\n- name: name of this column family
\n- options: Rdict Options for this column family
\nReturn
\n\n\n\n", "signature": "(self, /, name, options=Ellipsis):", "funcdef": "def"}, "rocksdict.Rdict.drop_column_family": {"fullname": "rocksdict.Rdict.drop_column_family", "modulename": "rocksdict", "qualname": "Rdict.drop_column_family", "type": "function", "doc": "the newly created column family
\nDrops the column family with the given name
\n", "signature": "(self, /, name):", "funcdef": "def"}, "rocksdict.Rdict.get_column_family": {"fullname": "rocksdict.Rdict.get_column_family", "modulename": "rocksdict", "qualname": "Rdict.get_column_family", "type": "function", "doc": "Get a column family Rdict
\n\nArgs
\n\n\n
\n\n- name: name of this column family
\n- options: Rdict Options for this column family
\nReturn
\n\n\n\n", "signature": "(self, /, name):", "funcdef": "def"}, "rocksdict.Rdict.get_column_family_handle": {"fullname": "rocksdict.Rdict.get_column_family_handle", "modulename": "rocksdict", "qualname": "Rdict.get_column_family_handle", "type": "function", "doc": "the column family Rdict of this name
\nUse this method to obtain a ColumnFamily instance, which can be used in WriteBatch.
\n\nExample
\n\n\n\n", "signature": "(self, /, name):", "funcdef": "def"}, "rocksdict.Rdict.snapshot": {"fullname": "rocksdict.Rdict.snapshot", "modulename": "rocksdict", "qualname": "Rdict.snapshot", "type": "function", "doc": "::
\n\n\nwb = WriteBatch()\nfor i in range(100):\n wb.put(i, i**2, db.get_column_family_handle(cf_name_1))\ndb.write(wb)\n\nwb = WriteBatch()\nwb.set_default_column_family(db.get_column_family_handle(cf_name_2))\nfor i in range(100, 200):\n wb[i] = i**2\ndb.write(wb)\n
A snapshot of the current column family.
\n\nExamples
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.ingest_external_file": {"fullname": "rocksdict.Rdict.ingest_external_file", "modulename": "rocksdict", "qualname": "Rdict.ingest_external_file", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"tmp\")\nfor i in range(100):\n db[i] = i\n\n# take a snapshot\nsnapshot = db.snapshot()\n\nfor i in range(90):\n del db[i]\n\n# 0-89 are no longer in db\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# but they are still in the snapshot\nfor i in range(100):\n assert snapshot[i] == i\n\n# drop the snapshot\ndel snapshot, db\n\nRdict.destroy(\"tmp\")\n
Loads a list of external SST files created with SstFileWriter\ninto the current column family.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, paths, opts=Ellipsis):", "funcdef": "def"}, "rocksdict.Rdict.try_catch_up_with_primary": {"fullname": "rocksdict.Rdict.try_catch_up_with_primary", "modulename": "rocksdict", "qualname": "Rdict.try_catch_up_with_primary", "type": "function", "doc": "- paths: a list a paths
\n- opts: IngestExternalFileOptionsPy instance
\nTries to catch up with the primary by reading as much as possible from the\nlog files.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.cancel_all_background": {"fullname": "rocksdict.Rdict.cancel_all_background", "modulename": "rocksdict", "qualname": "Rdict.cancel_all_background", "type": "function", "doc": "Request stopping background work, if wait is true wait until it's done.
\n", "signature": "(self, /, wait):", "funcdef": "def"}, "rocksdict.Rdict.write": {"fullname": "rocksdict.Rdict.write", "modulename": "rocksdict", "qualname": "Rdict.write", "type": "function", "doc": "WriteBatch
\n\nNotes
\n\n\n\n\nThis WriteBatch does not write to the current column family.
\nArgs
\n\n\n
\n", "signature": "(self, /, write_batch, write_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.delete_range": {"fullname": "rocksdict.Rdict.delete_range", "modulename": "rocksdict", "qualname": "Rdict.delete_range", "type": "function", "doc": "- write_batch: WriteBatch instance. This instance will be consumed.
\n- write_opt: use default value if not provided.
\nRemoves the database entries in the range
\n\n[\"from\", \"to\")
of the current column family.Args
\n\n\n
\n", "signature": "(self, /, begin, end, write_opt=None):", "funcdef": "def"}, "rocksdict.Rdict.close": {"fullname": "rocksdict.Rdict.close", "modulename": "rocksdict", "qualname": "Rdict.close", "type": "function", "doc": "- begin: included
\n- end: excluded
\n- write_opt: WriteOptions
\nFlush memory to disk, and drop the current column family.
\n\nNotes
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.path": {"fullname": "rocksdict.Rdict.path", "modulename": "rocksdict", "qualname": "Rdict.path", "type": "function", "doc": "Calling
\ndb.close()
is nearly equivalent to first calling\ndb.flush()
and thendel db
. However,db.close()
does\n not guarantee the underlying RocksDB to be actually closed.\n Other Column FamilyRdict
instances,ColumnFamily
\n (cf handle) instances, iterator instances such asRdictIter
,\nRdictItems
,RdictKeys
,RdictValues
can all keep RocksDB\n alive.del
all associated instances mentioned above\n to actually shut down RocksDB.Return current database path.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.compact_range": {"fullname": "rocksdict.Rdict.compact_range", "modulename": "rocksdict", "qualname": "Rdict.compact_range", "type": "function", "doc": "Runs a manual compaction on the Range of keys given for the current Column Family.
\n", "signature": "(self, /, begin, end, compact_opt=Ellipsis):", "funcdef": "def"}, "rocksdict.Rdict.set_options": {"fullname": "rocksdict.Rdict.set_options", "modulename": "rocksdict", "qualname": "Rdict.set_options", "type": "function", "doc": "Set options for the current column family.
\n", "signature": "(self, /, options):", "funcdef": "def"}, "rocksdict.Rdict.property_value": {"fullname": "rocksdict.Rdict.property_value", "modulename": "rocksdict", "qualname": "Rdict.property_value", "type": "function", "doc": "Retrieves a RocksDB property by name, for the current column family.
\n", "signature": "(self, /, name):", "funcdef": "def"}, "rocksdict.Rdict.property_int_value": {"fullname": "rocksdict.Rdict.property_int_value", "modulename": "rocksdict", "qualname": "Rdict.property_int_value", "type": "function", "doc": "Retrieves a RocksDB property and casts it to an integer\n(for the current column family).
\n\nFull list of properties that return int values could be find\nhere.
\n", "signature": "(self, /, name):", "funcdef": "def"}, "rocksdict.Rdict.latest_sequence_number": {"fullname": "rocksdict.Rdict.latest_sequence_number", "modulename": "rocksdict", "qualname": "Rdict.latest_sequence_number", "type": "function", "doc": "The sequence number of the most recent transaction.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.live_files": {"fullname": "rocksdict.Rdict.live_files", "modulename": "rocksdict", "qualname": "Rdict.live_files", "type": "function", "doc": "Returns a list of all table files with their level, start key and end key
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Rdict.destroy": {"fullname": "rocksdict.Rdict.destroy", "modulename": "rocksdict", "qualname": "Rdict.destroy", "type": "function", "doc": "Delete the database.
\n\nArgs
\n\n\n
\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, "rocksdict.Rdict.repair": {"fullname": "rocksdict.Rdict.repair", "modulename": "rocksdict", "qualname": "Rdict.repair", "type": "function", "doc": "- path (str): path to this database
\n- options (rocksdict.Options): Rocksdb options object
\nRepair the database.
\n\nArgs
\n\n\n
\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, "rocksdict.Rdict.list_cf": {"fullname": "rocksdict.Rdict.list_cf", "modulename": "rocksdict", "qualname": "Rdict.list_cf", "type": "function", "doc": "\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, "rocksdict.WriteBatch": {"fullname": "rocksdict.WriteBatch", "modulename": "rocksdict", "qualname": "WriteBatch", "type": "class", "doc": "- path (str): path to this database
\n- options (rocksdict.Options): Rocksdb options object
\nWriteBatch class. Use db.write() to ingest WriteBatch.
\n\nNotes
\n\n\n\n\nA WriteBatch instance can only be ingested once,\n otherwise an Exception will be raised.
\nArgs
\n\n\n
\n"}, "rocksdict.WriteBatch.__init__": {"fullname": "rocksdict.WriteBatch.__init__", "modulename": "rocksdict", "qualname": "WriteBatch.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.WriteBatch.set_dumps": {"fullname": "rocksdict.WriteBatch.set_dumps", "modulename": "rocksdict", "qualname": "WriteBatch.set_dumps", "type": "function", "doc": "- raw_mode (bool): make sure that this is consistent with the Rdict.
\nchange to a custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, "rocksdict.WriteBatch.set_default_column_family": {"fullname": "rocksdict.WriteBatch.set_default_column_family", "modulename": "rocksdict", "qualname": "WriteBatch.set_default_column_family", "type": "function", "doc": "Set the default item for
\n\na[i] = j
anddel a[i]
syntax.You can also use
\n\nput(key, value, column_family)
to explicitly choose column family.Args
\n\n\n
\n", "signature": "(self, /, column_family=None):", "funcdef": "def"}, "rocksdict.WriteBatch.len": {"fullname": "rocksdict.WriteBatch.len", "modulename": "rocksdict", "qualname": "WriteBatch.len", "type": "function", "doc": "- - column_family (ColumnFamily | None): column family descriptor or None (for default family).
\nlength of the batch
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.WriteBatch.size_in_bytes": {"fullname": "rocksdict.WriteBatch.size_in_bytes", "modulename": "rocksdict", "qualname": "WriteBatch.size_in_bytes", "type": "function", "doc": "Return WriteBatch serialized size (in bytes).
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.WriteBatch.is_empty": {"fullname": "rocksdict.WriteBatch.is_empty", "modulename": "rocksdict", "qualname": "WriteBatch.is_empty", "type": "function", "doc": "Check whether the batch is empty.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.WriteBatch.put": {"fullname": "rocksdict.WriteBatch.put", "modulename": "rocksdict", "qualname": "WriteBatch.put", "type": "function", "doc": "Insert a value into the database under the given key.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, key, value, column_family=None):", "funcdef": "def"}, "rocksdict.WriteBatch.delete": {"fullname": "rocksdict.WriteBatch.delete", "modulename": "rocksdict", "qualname": "WriteBatch.delete", "type": "function", "doc": "- column_family: override the default column family set by set_default_column_family
\nRemoves the database entry for key. Does nothing if the key was not found.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, key, column_family=None):", "funcdef": "def"}, "rocksdict.WriteBatch.delete_range": {"fullname": "rocksdict.WriteBatch.delete_range", "modulename": "rocksdict", "qualname": "WriteBatch.delete_range", "type": "function", "doc": "- column_family: override the default column family set by set_default_column_family
\nRemove database entries in column family from start key to end key.
\n\nNotes
\n\n\n\n\nRemoves the database entries in the range [\"begin_key\", \"end_key\"), i.e.,\n including \"begin_key\" and excluding \"end_key\". It is not an error if no\n keys exist in the range [\"begin_key\", \"end_key\").
\nArgs
\n\n\n
\n", "signature": "(self, /, begin, end, column_family=None):", "funcdef": "def"}, "rocksdict.WriteBatch.clear": {"fullname": "rocksdict.WriteBatch.clear", "modulename": "rocksdict", "qualname": "WriteBatch.clear", "type": "function", "doc": "- begin: begin key
\n- end: end key
\n- column_family: override the default column family set by set_default_column_family
\nClear all updates buffered in this batch.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.SstFileWriter": {"fullname": "rocksdict.SstFileWriter", "modulename": "rocksdict", "qualname": "SstFileWriter", "type": "class", "doc": "SstFileWriter is used to create sst files that can be added to database later\nAll keys in files generated by SstFileWriter will have sequence number = 0.
\n\nArgs
\n\n\n
\n"}, "rocksdict.SstFileWriter.__init__": {"fullname": "rocksdict.SstFileWriter.__init__", "modulename": "rocksdict", "qualname": "SstFileWriter.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.SstFileWriter.set_dumps": {"fullname": "rocksdict.SstFileWriter.set_dumps", "modulename": "rocksdict", "qualname": "SstFileWriter.set_dumps", "type": "function", "doc": "- options: this options must have the same
\nraw_mode
as the Rdict DB.set custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, "rocksdict.SstFileWriter.open": {"fullname": "rocksdict.SstFileWriter.open", "modulename": "rocksdict", "qualname": "SstFileWriter.open", "type": "function", "doc": "Prepare SstFileWriter to write into file located at \"file_path\".
\n", "signature": "(self, /, path):", "funcdef": "def"}, "rocksdict.SstFileWriter.finish": {"fullname": "rocksdict.SstFileWriter.finish", "modulename": "rocksdict", "qualname": "SstFileWriter.finish", "type": "function", "doc": "Finalize writing to sst file and close file.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.SstFileWriter.file_size": {"fullname": "rocksdict.SstFileWriter.file_size", "modulename": "rocksdict", "qualname": "SstFileWriter.file_size", "type": "function", "doc": "returns the current file size
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.AccessType": {"fullname": "rocksdict.AccessType", "modulename": "rocksdict", "qualname": "AccessType", "type": "class", "doc": "Define DB Access Types.
\n\nNotes
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples
\n\n\n\n"}, "rocksdict.AccessType.__init__": {"fullname": "rocksdict.AccessType.__init__", "modulename": "rocksdict", "qualname": "AccessType.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.AccessType.read_write": {"fullname": "rocksdict.AccessType.read_write", "modulename": "rocksdict", "qualname": "AccessType.read_write", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples
\n\n\n\n", "signature": "():", "funcdef": "def"}, "rocksdict.AccessType.read_only": {"fullname": "rocksdict.AccessType.read_only", "modulename": "rocksdict", "qualname": "AccessType.read_only", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples
\n\n\n\n", "signature": "(error_if_log_file_exist=False):", "funcdef": "def"}, "rocksdict.AccessType.secondary": {"fullname": "rocksdict.AccessType.secondary", "modulename": "rocksdict", "qualname": "AccessType.secondary", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples
\n\n\n\n", "signature": "(secondary_path):", "funcdef": "def"}, "rocksdict.AccessType.with_ttl": {"fullname": "rocksdict.AccessType.with_ttl", "modulename": "rocksdict", "qualname": "AccessType.with_ttl", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples
\n\n\n\n", "signature": "(duration):", "funcdef": "def"}, "rocksdict.WriteOptions": {"fullname": "rocksdict.WriteOptions", "modulename": "rocksdict", "qualname": "WriteOptions", "type": "class", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Optionally disable WAL or sync for this write.
\n\nExample
\n\n\n\n"}, "rocksdict.WriteOptions.__init__": {"fullname": "rocksdict.WriteOptions.__init__", "modulename": "rocksdict", "qualname": "WriteOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.WriteOptions.low_pri": {"fullname": "rocksdict.WriteOptions.low_pri", "modulename": "rocksdict", "qualname": "WriteOptions.low_pri", "type": "variable", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, WriteBatch, WriteOptions\n\npath = \"_path_for_rocksdb_storageY1\"\ndb = Rdict(path, Options())\n\n# set write options\nwrite_options = WriteOptions()\nwrite_options.set_sync(false)\nwrite_options.disable_wal(true)\ndb.set_write_options(write_options)\n\n# write to db\ndb[\"my key\"] = \"my value\"\ndb[\"key2\"] = \"value2\"\ndb[\"key3\"] = \"value3\"\n\n# remove db\ndel db\nRdict.destroy(path, Options())\n
If true, this write request is of lower priority if compaction is\nbehind. In this case, no_slowdown = true, the request will be cancelled\nimmediately with Status::Incomplete() returned. Otherwise, it will be\nslowed down. The slowdown value is determined by RocksDB to guarantee\nit introduces minimum impacts to high priority writes.
\n\nDefault: false
\n"}, "rocksdict.WriteOptions.disable_wal": {"fullname": "rocksdict.WriteOptions.disable_wal", "modulename": "rocksdict", "qualname": "WriteOptions.disable_wal", "type": "variable", "doc": "Sets whether WAL should be active or not.\nIf true, writes will not first go to the write ahead log,\nand the write may got lost after a crash.
\n\nDefault: false
\n"}, "rocksdict.WriteOptions.ignore_missing_column_families": {"fullname": "rocksdict.WriteOptions.ignore_missing_column_families", "modulename": "rocksdict", "qualname": "WriteOptions.ignore_missing_column_families", "type": "variable", "doc": "If true and if user is trying to write to column families that don't exist (they were dropped),\nignore the write (don't return an error). If there are multiple writes in a WriteBatch,\nother writes will succeed.
\n\nDefault: false
\n"}, "rocksdict.WriteOptions.sync": {"fullname": "rocksdict.WriteOptions.sync", "modulename": "rocksdict", "qualname": "WriteOptions.sync", "type": "variable", "doc": "Sets the sync mode. If true, the write will be flushed\nfrom the operating system buffer cache before the write is considered complete.\nIf this flag is true, writes will be slower.
\n\nDefault: false
\n"}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"fullname": "rocksdict.WriteOptions.memtable_insert_hint_per_batch", "modulename": "rocksdict", "qualname": "WriteOptions.memtable_insert_hint_per_batch", "type": "variable", "doc": "If true, writebatch will maintain the last insert positions of each\nmemtable as hints in concurrent write. It can improve write performance\nin concurrent writes if keys in one writebatch are sequential. In\nnon-concurrent writes (when concurrent_memtable_writes is false) this\noption will be ignored.
\n\nDefault: false
\n"}, "rocksdict.WriteOptions.no_slowdown": {"fullname": "rocksdict.WriteOptions.no_slowdown", "modulename": "rocksdict", "qualname": "WriteOptions.no_slowdown", "type": "variable", "doc": "If true and we need to wait or sleep for the write request, fails\nimmediately with Status::Incomplete().
\n\nDefault: false
\n"}, "rocksdict.Snapshot": {"fullname": "rocksdict.Snapshot", "modulename": "rocksdict", "qualname": "Snapshot", "type": "class", "doc": "A consistent view of the database at the point of creation.
\n\nExamples
\n\n\n\n"}, "rocksdict.Snapshot.__init__": {"fullname": "rocksdict.Snapshot.__init__", "modulename": "rocksdict", "qualname": "Snapshot.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.Snapshot.iter": {"fullname": "rocksdict.Snapshot.iter", "modulename": "rocksdict", "qualname": "Snapshot.iter", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"tmp\")\nfor i in range(100):\n db[i] = i\n\n# take a snapshot\nsnapshot = db.snapshot()\n\nfor i in range(90):\n del db[i]\n\n# 0-89 are no longer in db\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# but they are still in the snapshot\nfor i in range(100):\n assert snapshot[i] == i\n\n# drop the snapshot\ndel snapshot, db\n\nRdict.destroy(\"tmp\")\n
Creates an iterator over the data in this snapshot under the given column family, using\nthe default read options.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, read_opt=None):", "funcdef": "def"}, "rocksdict.Snapshot.items": {"fullname": "rocksdict.Snapshot.items", "modulename": "rocksdict", "qualname": "Snapshot.items", "type": "function", "doc": "- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all keys and values pairs.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Snapshot.keys": {"fullname": "rocksdict.Snapshot.keys", "modulename": "rocksdict", "qualname": "Snapshot.keys", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all keys.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.Snapshot.values": {"fullname": "rocksdict.Snapshot.values", "modulename": "rocksdict", "qualname": "Snapshot.values", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all values.
\n\nArgs
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, "rocksdict.RdictIter": {"fullname": "rocksdict.RdictIter", "modulename": "rocksdict", "qualname": "RdictIter", "type": "class", "doc": "\n"}, "rocksdict.RdictIter.__init__": {"fullname": "rocksdict.RdictIter.__init__", "modulename": "rocksdict", "qualname": "RdictIter.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.RdictIter.valid": {"fullname": "rocksdict.RdictIter.valid", "modulename": "rocksdict", "qualname": "RdictIter.valid", "type": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Returns
\n\ntrue
if the iterator is valid. An iterator is invalidated when\nit reaches the end of its defined range, or when it encounters an error.To check whether the iterator encountered an error after
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.status": {"fullname": "rocksdict.RdictIter.status", "modulename": "rocksdict", "qualname": "RdictIter.status", "type": "function", "doc": "valid
has\nreturnedfalse
, use thestatus
method.status
will never\nreturn an error whenvalid
istrue
.Returns an error
\n\nResult
if the iterator has encountered an error\nduring operation. When an error is encountered, the iterator is\ninvalidated andvalid
will returnfalse
when called.Performing a seek will discard the current status.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.seek_to_first": {"fullname": "rocksdict.RdictIter.seek_to_first", "modulename": "rocksdict", "qualname": "RdictIter.seek_to_first", "type": "function", "doc": "Seeks to the first key in the database.
\n\nExample
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.seek_to_last": {"fullname": "rocksdict.RdictIter.seek_to_last", "modulename": "rocksdict", "qualname": "RdictIter.seek_to_last", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage5\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Iterate all keys from the start in lexicographic order\niter.seek_to_first()\n\nwhile iter.valid():\n print(f\"{iter.key()} {iter.value()}\")\n iter.next()\n\n# Read just the first key\niter.seek_to_first();\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the last key in the database.
\n\nExample
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.seek": {"fullname": "rocksdict.RdictIter.seek", "modulename": "rocksdict", "qualname": "RdictIter.seek", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Iterate all keys from the start in lexicographic order\niter.seek_to_last()\n\nwhile iter.valid():\n print(f\"{iter.key()} {iter.value()}\")\n iter.prev()\n\n# Read just the last key\niter.seek_to_last();\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the specified key or the first key that lexicographically follows it.
\n\nThis method will attempt to seek to the specified key. If that key does not exist, it will\nfind and seek to the key that lexicographically follows it instead.
\n\nExample
\n\n\n\n", "signature": "(self, /, key):", "funcdef": "def"}, "rocksdict.RdictIter.seek_for_prev": {"fullname": "rocksdict.RdictIter.seek_for_prev", "modulename": "rocksdict", "qualname": "RdictIter.seek_for_prev", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Read the first string key that starts with 'a'\niter.seek(\"a\");\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the specified key, or the first key that lexicographically precedes it.
\n\nLike
\n\n.seek()
this method will attempt to seek to the specified key.\nThe difference with.seek()
is that if the specified key do not exist, this method will\nseek to key that lexicographically precedes it instead.Example
\n\n\n\n", "signature": "(self, /, key):", "funcdef": "def"}, "rocksdict.RdictIter.next": {"fullname": "rocksdict.RdictIter.next", "modulename": "rocksdict", "qualname": "RdictIter.next", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Read the last key that starts with 'a'\nseek_for_prev(\"b\")\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the next key.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.prev": {"fullname": "rocksdict.RdictIter.prev", "modulename": "rocksdict", "qualname": "RdictIter.prev", "type": "function", "doc": "Seeks to the previous key.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.key": {"fullname": "rocksdict.RdictIter.key", "modulename": "rocksdict", "qualname": "RdictIter.key", "type": "function", "doc": "Returns the current key.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.RdictIter.value": {"fullname": "rocksdict.RdictIter.value", "modulename": "rocksdict", "qualname": "RdictIter.value", "type": "function", "doc": "Returns the current value.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Options": {"fullname": "rocksdict.Options", "modulename": "rocksdict", "qualname": "Options", "type": "class", "doc": "Database-wide options around performance and behavior.
\n\nPlease read the official tuning guide\nand most importantly, measure performance under realistic workloads with realistic hardware.
\n\nExample
\n\n\n\n\n::
\n\n\nfrom rocksdict import Options, Rdict, DBCompactionStyle\n\ndef badly_tuned_for_somebody_elses_disk():\n\n path = \"path/for/rocksdb/storageX\"\n\n opts = Options()\n opts.create_if_missing(true)\n opts.set_max_open_files(10000)\n opts.set_use_fsync(false)\n opts.set_bytes_per_sync(8388608)\n opts.optimize_for_point_lookup(1024)\n opts.set_table_cache_num_shard_bits(6)\n opts.set_max_write_buffer_number(32)\n opts.set_write_buffer_size(536870912)\n opts.set_target_file_size_base(1073741824)\n opts.set_min_write_buffer_number_to_merge(4)\n opts.set_level_zero_stop_writes_trigger(2000)\n opts.set_level_zero_slowdown_writes_trigger(0)\n opts.set_compaction_style(DBCompactionStyle.universal())\n opts.set_disable_auto_compactions(true)\n\n return Rdict(path, opts)\n
Args
\n\n\n
\n"}, "rocksdict.Options.__init__": {"fullname": "rocksdict.Options.__init__", "modulename": "rocksdict", "qualname": "Options.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.Options.load_latest": {"fullname": "rocksdict.Options.load_latest", "modulename": "rocksdict", "qualname": "Options.load_latest", "type": "function", "doc": "- raw_mode (bool): set this to True to operate in raw mode (i.e.\nit will only allow bytes as key-value pairs, and is compatible\nwith other RockDB database).
\nLoad latest options from the rocksdb path
\n\nReturns a tuple, where the first item is
\n", "signature": "(path, env=Ellipsis, ignore_unknown_options=False, cache=Ellipsis):", "funcdef": "def"}, "rocksdict.Options.increase_parallelism": {"fullname": "rocksdict.Options.increase_parallelism", "modulename": "rocksdict", "qualname": "Options.increase_parallelism", "type": "function", "doc": "Options
\nand the second item is aDict
of column families.By default, RocksDB uses only one background thread for flush and\ncompaction. Calling this function will set it up such that total of\n
\n", "signature": "(self, /, parallelism):", "funcdef": "def"}, "rocksdict.Options.optimize_level_style_compaction": {"fullname": "rocksdict.Options.optimize_level_style_compaction", "modulename": "rocksdict", "qualname": "Options.optimize_level_style_compaction", "type": "function", "doc": "total_threads
is used. Good value fortotal_threads
is the number of\ncores. You almost definitely want to call this function if your system is\nbottlenecked by RocksDB.Optimize level style compaction.
\n\nDefault values for some parameters in
\n\nOptions
are not optimized for heavy\nworkloads and big datasets, which means you might observe write stalls under\nsome conditions.This can be used as one of the starting points for tuning RocksDB options in\nsuch cases.
\n\nInternally, it sets
\n\nwrite_buffer_size
,min_write_buffer_number_to_merge
,\nmax_write_buffer_number
,level0_file_num_compaction_trigger
,\ntarget_file_size_base
,max_bytes_for_level_base
, so it can override if those\nparameters were set before.It sets buffer sizes so that memory consumption would be constrained by\n
\n", "signature": "(self, /, memtable_memory_budget):", "funcdef": "def"}, "rocksdict.Options.optimize_universal_style_compaction": {"fullname": "rocksdict.Options.optimize_universal_style_compaction", "modulename": "rocksdict", "qualname": "Options.optimize_universal_style_compaction", "type": "function", "doc": "memtable_memory_budget
.Optimize universal style compaction.
\n\nDefault values for some parameters in
\n\nOptions
are not optimized for heavy\nworkloads and big datasets, which means you might observe write stalls under\nsome conditions.This can be used as one of the starting points for tuning RocksDB options in\nsuch cases.
\n\nInternally, it sets
\n\nwrite_buffer_size
,min_write_buffer_number_to_merge
,\nmax_write_buffer_number
,level0_file_num_compaction_trigger
,\ntarget_file_size_base
,max_bytes_for_level_base
, so it can override if those\nparameters were set before.It sets buffer sizes so that memory consumption would be constrained by\n
\n", "signature": "(self, /, memtable_memory_budget):", "funcdef": "def"}, "rocksdict.Options.create_if_missing": {"fullname": "rocksdict.Options.create_if_missing", "modulename": "rocksdict", "qualname": "Options.create_if_missing", "type": "function", "doc": "memtable_memory_budget
.If true, any column families that didn't exist when opening the database\nwill be created.
\n\nDefault:
\n", "signature": "(self, /, create_if_missing):", "funcdef": "def"}, "rocksdict.Options.create_missing_column_families": {"fullname": "rocksdict.Options.create_missing_column_families", "modulename": "rocksdict", "qualname": "Options.create_missing_column_families", "type": "function", "doc": "true
If true, any column families that didn't exist when opening the database\nwill be created.
\n\nDefault:
\n", "signature": "(self, /, create_missing_cfs):", "funcdef": "def"}, "rocksdict.Options.set_error_if_exists": {"fullname": "rocksdict.Options.set_error_if_exists", "modulename": "rocksdict", "qualname": "Options.set_error_if_exists", "type": "function", "doc": "false
Specifies whether an error should be raised if the database already exists.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_paranoid_checks": {"fullname": "rocksdict.Options.set_paranoid_checks", "modulename": "rocksdict", "qualname": "Options.set_paranoid_checks", "type": "function", "doc": "Enable/disable paranoid checks.
\n\nIf true, the implementation will do aggressive checking of the\ndata it is processing and will stop early if it detects any\nerrors. This may have unforeseen ramifications: for example, a\ncorruption of one DB entry may cause a large number of entries to\nbecome unreadable or for the entire DB to become unopenable.\nIf any of the writes to the database fails (Put, Delete, Merge, Write),\nthe database will switch to read-only mode and fail all other\nWrite operations.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_db_paths": {"fullname": "rocksdict.Options.set_db_paths", "modulename": "rocksdict", "qualname": "Options.set_db_paths", "type": "function", "doc": "A list of paths where SST files can be put into, with its target size.\nNewer data is placed into paths specified earlier in the vector while\nolder data gradually moves to paths specified later in the vector.
\n\nFor example, you have a flash device with 10GB allocated for the DB,\nas well as a hard drive of 2TB, you should config it to be:\n [{\"/flash_path\", 10GB}, {\"/hard_drive\", 2TB}]
\n\nThe system will try to guarantee data under each path is close to but\nnot larger than the target size. But current and future file sizes used\nby determining where to place a file are based on best-effort estimation,\nwhich means there is a chance that the actual size under the directory\nis slightly more than target size under some workloads. User should give\nsome buffer room for those cases.
\n\nIf none of the paths has sufficient room to place a file, the file will\nbe placed to the last path anyway, despite to the target size.
\n\nPlacing newer data to earlier paths is also best-efforts. User should\nexpect user files to be placed in higher levels in some extreme cases.
\n\nIf left empty, only one path will be used, which is
\n\npath
passed when\nopening the DB.Default: empty
\n\n\n", "signature": "(self, /, paths):", "funcdef": "def"}, "rocksdict.Options.set_env": {"fullname": "rocksdict.Options.set_env", "modulename": "rocksdict", "qualname": "Options.set_env", "type": "function", "doc": "from rocksdict import Options, DBPath\n\nopt = Options()\nflash_path = DBPath(\"/flash_path\", 10 * 1024 * 1024 * 1024) # 10 GB\nhard_drive = DBPath(\"/hard_drive\", 2 * 1024 * 1024 * 1024 * 1024) # 2 TB\nopt.set_db_paths([flash_path, hard_drive])\n
Use the specified object to interact with the environment,\ne.g. to read/write files, schedule background work, etc. In the near\nfuture, support for doing storage operations such as read/write files\nthrough env will be deprecated in favor of file_system.
\n", "signature": "(self, /, env):", "funcdef": "def"}, "rocksdict.Options.set_compression_type": {"fullname": "rocksdict.Options.set_compression_type", "modulename": "rocksdict", "qualname": "Options.set_compression_type", "type": "function", "doc": "Sets the compression algorithm that will be used for compressing blocks.
\n\nDefault:
\n\nDBCompressionType::Snappy
(DBCompressionType::None
if\nsnappy feature is not enabled).Example
\n\n\n\n", "signature": "(self, /, t):", "funcdef": "def"}, "rocksdict.Options.set_compression_per_level": {"fullname": "rocksdict.Options.set_compression_per_level", "modulename": "rocksdict", "qualname": "Options.set_compression_per_level", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options, DBCompressionType\n\nopts = Options()\nopts.set_compression_type(DBCompressionType.snappy())\n
Different levels can have different compression policies. There\nare cases where most lower levels would like to use quick compression\nalgorithms while the higher levels (which have more data) use\ncompression algorithms that have better compression but could\nbe slower. This array, if non-empty, should have an entry for\neach level of the database; these override the value specified in\nthe previous field 'compression'.
\n\nExample
\n\n\n\n", "signature": "(self, /, level_types):", "funcdef": "def"}, "rocksdict.Options.set_compression_options": {"fullname": "rocksdict.Options.set_compression_options", "modulename": "rocksdict", "qualname": "Options.set_compression_options", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options, DBCompressionType\n\nopts = Options()\nopts.set_compression_per_level([\n DBCompressionType.none(),\n DBCompressionType.none(),\n DBCompressionType.snappy(),\n DBCompressionType.snappy(),\n DBCompressionType.snappy()\n])\n
Maximum size of dictionaries used to prime the compression library.\nEnabling dictionary can improve compression ratios when there are\nrepetitions across data blocks.
\n\nThe dictionary is created by sampling the SST file data. If\n
\n\nzstd_max_train_bytes
is nonzero, the samples are passed through zstd's\ndictionary generator. Otherwise, the random samples are used directly as\nthe dictionary.When compression dictionary is disabled, we compress and write each block\nbefore buffering data for the next one. When compression dictionary is\nenabled, we buffer all SST file data in-memory so we can sample it, as data\ncan only be compressed and written after the dictionary has been finalized.\nSo users of this feature may see increased memory usage.
\n\nDefault:
\n", "signature": "(self, /, w_bits, level, strategy, max_dict_bytes):", "funcdef": "def"}, "rocksdict.Options.set_zstd_max_train_bytes": {"fullname": "rocksdict.Options.set_zstd_max_train_bytes", "modulename": "rocksdict", "qualname": "Options.set_zstd_max_train_bytes", "type": "function", "doc": "0
Sets maximum size of training data passed to zstd's dictionary trainer. Using zstd's\ndictionary trainer can achieve even better compression ratio improvements than using\n
\n\nmax_dict_bytes
alone.The training data will be used to generate a dictionary of max_dict_bytes.
\n\nDefault: 0.
\n", "signature": "(self, /, value):", "funcdef": "def"}, "rocksdict.Options.set_compaction_readahead_size": {"fullname": "rocksdict.Options.set_compaction_readahead_size", "modulename": "rocksdict", "qualname": "Options.set_compaction_readahead_size", "type": "function", "doc": "If non-zero, we perform bigger reads when doing compaction. If you're\nrunning RocksDB on spinning disks, you should set this to at least 2MB.\nThat way RocksDB's compaction is doing sequential instead of random reads.
\n\nWhen non-zero, we also force new_table_reader_for_compaction_inputs to\ntrue.
\n\nDefault:
\n", "signature": "(self, /, compaction_readahead_size):", "funcdef": "def"}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"fullname": "rocksdict.Options.set_level_compaction_dynamic_level_bytes", "modulename": "rocksdict", "qualname": "Options.set_level_compaction_dynamic_level_bytes", "type": "function", "doc": "0
Allow RocksDB to pick dynamic base of bytes for levels.\nWith this feature turned on, RocksDB will automatically adjust max bytes for each level.\nThe goal of this feature is to have lower bound on size amplification.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.Options.set_prefix_extractor": {"fullname": "rocksdict.Options.set_prefix_extractor", "modulename": "rocksdict", "qualname": "Options.set_prefix_extractor", "type": "function", "doc": "\n", "signature": "(self, /, prefix_extractor):", "funcdef": "def"}, "rocksdict.Options.optimize_for_point_lookup": {"fullname": "rocksdict.Options.optimize_for_point_lookup", "modulename": "rocksdict", "qualname": "Options.optimize_for_point_lookup", "type": "function", "doc": "\n", "signature": "(self, /, cache_size):", "funcdef": "def"}, "rocksdict.Options.set_optimize_filters_for_hits": {"fullname": "rocksdict.Options.set_optimize_filters_for_hits", "modulename": "rocksdict", "qualname": "Options.set_optimize_filters_for_hits", "type": "function", "doc": "Sets the optimize_filters_for_hits flag
\n\nDefault:
\n", "signature": "(self, /, optimize_for_hits):", "funcdef": "def"}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"fullname": "rocksdict.Options.set_delete_obsolete_files_period_micros", "modulename": "rocksdict", "qualname": "Options.set_delete_obsolete_files_period_micros", "type": "function", "doc": "false
Sets the periodicity when obsolete files get deleted.
\n\nThe files that get out of scope by compaction\nprocess will still get automatically delete on every compaction,\nregardless of this setting.
\n\nDefault: 6 hours
\n", "signature": "(self, /, micros):", "funcdef": "def"}, "rocksdict.Options.prepare_for_bulk_load": {"fullname": "rocksdict.Options.prepare_for_bulk_load", "modulename": "rocksdict", "qualname": "Options.prepare_for_bulk_load", "type": "function", "doc": "Prepare the DB for bulk loading.
\n\nAll data will be in level 0 without any automatic compaction.\nIt's recommended to manually call CompactRange(NULL, NULL) before reading\nfrom the database, because otherwise the read can be very slow.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Options.set_max_open_files": {"fullname": "rocksdict.Options.set_max_open_files", "modulename": "rocksdict", "qualname": "Options.set_max_open_files", "type": "function", "doc": "Sets the number of open files that can be used by the DB. You may need to\nincrease this if your database has a large working set. Value
\n\n-1
means\nfiles opened are always kept open. You can estimate number of files based\non target_file_size_base and target_file_size_multiplier for level-based\ncompaction. For universal-style compaction, you can usually set it to-1
.Default:
\n", "signature": "(self, /, nfiles):", "funcdef": "def"}, "rocksdict.Options.set_max_file_opening_threads": {"fullname": "rocksdict.Options.set_max_file_opening_threads", "modulename": "rocksdict", "qualname": "Options.set_max_file_opening_threads", "type": "function", "doc": "-1
If max_open_files is -1, DB will open all files on DB::Open(). You can\nuse this option to increase the number of threads used to open the files.\nDefault: 16
\n", "signature": "(self, /, nthreads):", "funcdef": "def"}, "rocksdict.Options.set_use_fsync": {"fullname": "rocksdict.Options.set_use_fsync", "modulename": "rocksdict", "qualname": "Options.set_use_fsync", "type": "function", "doc": "If true, then every store to stable storage will issue a fsync.\nIf false, then every store to stable storage will issue a fdatasync.\nThis parameter should be set to true while storing data to\nfilesystem like ext3 that can lose files after a reboot.
\n\nDefault:
\n", "signature": "(self, /, useit):", "funcdef": "def"}, "rocksdict.Options.set_db_log_dir": {"fullname": "rocksdict.Options.set_db_log_dir", "modulename": "rocksdict", "qualname": "Options.set_db_log_dir", "type": "function", "doc": "false
Specifies the absolute info LOG dir.
\n\nIf it is empty, the log files will be in the same dir as data.\nIf it is non empty, the log files will be in the specified dir,\nand the db data dir's absolute path will be used as the log file\nname's prefix.
\n\nDefault: empty
\n", "signature": "(self, /, path):", "funcdef": "def"}, "rocksdict.Options.set_bytes_per_sync": {"fullname": "rocksdict.Options.set_bytes_per_sync", "modulename": "rocksdict", "qualname": "Options.set_bytes_per_sync", "type": "function", "doc": "Allows OS to incrementally sync files to disk while they are being\nwritten, asynchronously, in the background. This operation can be used\nto smooth out write I/Os over time. Users shouldn't rely on it for\npersistency guarantee.\nIssue one request for every bytes_per_sync written.
\n\n0
turns it off.Default:
\n\n0
You may consider using rate_limiter to regulate write rate to device.\nWhen rate limiter is enabled, it automatically enables bytes_per_sync\nto 1MB.
\n\nThis option applies to table files
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, "rocksdict.Options.set_wal_bytes_per_sync": {"fullname": "rocksdict.Options.set_wal_bytes_per_sync", "modulename": "rocksdict", "qualname": "Options.set_wal_bytes_per_sync", "type": "function", "doc": "Same as bytes_per_sync, but applies to WAL files.
\n\nDefault: 0, turned off
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, "rocksdict.Options.set_writable_file_max_buffer_size": {"fullname": "rocksdict.Options.set_writable_file_max_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_writable_file_max_buffer_size", "type": "function", "doc": "Sets the maximum buffer size that is used by WritableFileWriter.
\n\nOn Windows, we need to maintain an aligned buffer for writes.\nWe allow the buffer to grow until it's size hits the limit in buffered\nIO and fix the buffer size when using direct IO to ensure alignment of\nwrite requests if the logical sector size is unusual
\n\nDefault: 1024 * 1024 (1 MB)
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"fullname": "rocksdict.Options.set_allow_concurrent_memtable_write", "modulename": "rocksdict", "qualname": "Options.set_allow_concurrent_memtable_write", "type": "function", "doc": "If true, allow multi-writers to update mem tables in parallel.\nOnly some memtable_factory-s support concurrent writes; currently it\nis implemented only for SkipListFactory. Concurrent memtable writes\nare not compatible with inplace_update_support or filter_deletes.\nIt is strongly recommended to set enable_write_thread_adaptive_yield\nif you are going to use this feature.
\n\nDefault: true
\n", "signature": "(self, /, allow):", "funcdef": "def"}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"fullname": "rocksdict.Options.set_enable_write_thread_adaptive_yield", "modulename": "rocksdict", "qualname": "Options.set_enable_write_thread_adaptive_yield", "type": "function", "doc": "If true, threads synchronizing with the write batch group leader will wait for up to\nwrite_thread_max_yield_usec before blocking on a mutex. This can substantially improve\nthroughput for concurrent workloads, regardless of whether allow_concurrent_memtable_write\nis enabled.
\n\nDefault: true
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"fullname": "rocksdict.Options.set_max_sequential_skip_in_iterations", "modulename": "rocksdict", "qualname": "Options.set_max_sequential_skip_in_iterations", "type": "function", "doc": "Specifies whether an iteration->Next() sequentially skips over keys with the same user-key or not.
\n\nThis number specifies the number of keys (with the same userkey)\nthat will be sequentially skipped before a reseek is issued.
\n\nDefault: 8
\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.Options.set_use_direct_reads": {"fullname": "rocksdict.Options.set_use_direct_reads", "modulename": "rocksdict", "qualname": "Options.set_use_direct_reads", "type": "function", "doc": "Enable direct I/O mode for reading\nthey may or may not improve performance depending on the use case
\n\nFiles will be opened in \"direct I/O\" mode\nwhich means that data read from the disk will not be cached or\nbuffered. The hardware buffer of the devices may however still\nbe used. Memory mapped files are not impacted by these parameters.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"fullname": "rocksdict.Options.set_use_direct_io_for_flush_and_compaction", "modulename": "rocksdict", "qualname": "Options.set_use_direct_io_for_flush_and_compaction", "type": "function", "doc": "Enable direct I/O mode for flush and compaction
\n\nFiles will be opened in \"direct I/O\" mode\nwhich means that data written to the disk will not be cached or\nbuffered. The hardware buffer of the devices may however still\nbe used. Memory mapped files are not impacted by these parameters.\nthey may or may not improve performance depending on the use case
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_is_fd_close_on_exec": {"fullname": "rocksdict.Options.set_is_fd_close_on_exec", "modulename": "rocksdict", "qualname": "Options.set_is_fd_close_on_exec", "type": "function", "doc": "Enable/dsiable child process inherit open files.
\n\nDefault: true
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_table_cache_num_shard_bits": {"fullname": "rocksdict.Options.set_table_cache_num_shard_bits", "modulename": "rocksdict", "qualname": "Options.set_table_cache_num_shard_bits", "type": "function", "doc": "Sets the number of shards used for table cache.
\n\nDefault:
\n", "signature": "(self, /, nbits):", "funcdef": "def"}, "rocksdict.Options.set_target_file_size_multiplier": {"fullname": "rocksdict.Options.set_target_file_size_multiplier", "modulename": "rocksdict", "qualname": "Options.set_target_file_size_multiplier", "type": "function", "doc": "6
By default target_file_size_multiplier is 1, which means\nby default files in different levels will have similar size.
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, multiplier):", "funcdef": "def"}, "rocksdict.Options.set_min_write_buffer_number": {"fullname": "rocksdict.Options.set_min_write_buffer_number", "modulename": "rocksdict", "qualname": "Options.set_min_write_buffer_number", "type": "function", "doc": "Sets the minimum number of write buffers that will be merged together\nbefore writing to storage. If set to
\n\n1
, then\nall write buffers are flushed to L0 as individual files and this increases\nread amplification because a get request has to check in all of these\nfiles. Also, an in-memory merge may result in writing lesser\ndata to storage if there are duplicate records in each of these\nindividual write buffers.Default:
\n", "signature": "(self, /, nbuf):", "funcdef": "def"}, "rocksdict.Options.set_max_write_buffer_number": {"fullname": "rocksdict.Options.set_max_write_buffer_number", "modulename": "rocksdict", "qualname": "Options.set_max_write_buffer_number", "type": "function", "doc": "1
Sets the maximum number of write buffers that are built up in memory.\nThe default and the minimum number is 2, so that when 1 write buffer\nis being flushed to storage, new writes can continue to the other\nwrite buffer.\nIf max_write_buffer_number > 3, writing will be slowed down to\noptions.delayed_write_rate if we are writing to the last write buffer\nallowed.
\n\nDefault:
\n", "signature": "(self, /, nbuf):", "funcdef": "def"}, "rocksdict.Options.set_write_buffer_size": {"fullname": "rocksdict.Options.set_write_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_write_buffer_size", "type": "function", "doc": "2
Sets the amount of data to build up in memory (backed by an unsorted log\non disk) before converting to a sorted on-disk file.
\n\nLarger values increase performance, especially during bulk loads.\nUp to max_write_buffer_number write buffers may be held in memory\nat the same time,\nso you may wish to adjust this parameter to control memory usage.\nAlso, a larger write buffer will result in a longer recovery time\nthe next time the database is opened.
\n\nNote that write_buffer_size is enforced per column family.\nSee db_write_buffer_size for sharing memory across column families.
\n\nDefault:
\n\n0x4000000
(64MiB)Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_db_write_buffer_size": {"fullname": "rocksdict.Options.set_db_write_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_db_write_buffer_size", "type": "function", "doc": "Amount of data to build up in memtables across all column\nfamilies before writing to disk.
\n\nThis is distinct from write_buffer_size, which enforces a limit\nfor a single memtable.
\n\nThis feature is disabled by default. Specify a non-zero value\nto enable it.
\n\nDefault: 0 (disabled)
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_max_bytes_for_level_base": {"fullname": "rocksdict.Options.set_max_bytes_for_level_base", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_base", "type": "function", "doc": "Control maximum total data size for a level.\nmax_bytes_for_level_base is the max total for level-1.\nMaximum number of bytes for level L can be calculated as\n(max_bytes_for_level_base) * (max_bytes_for_level_multiplier ^ (L-1))\nFor example, if max_bytes_for_level_base is 200MB, and if\nmax_bytes_for_level_multiplier is 10, total data size for level-1\nwill be 200MB, total file size for level-2 will be 2GB,\nand total file size for level-3 will be 20GB.
\n\nDefault:
\n\n0x10000000
(256MiB).Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"fullname": "rocksdict.Options.set_max_bytes_for_level_multiplier", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_multiplier", "type": "function", "doc": "Default:
\n", "signature": "(self, /, mul):", "funcdef": "def"}, "rocksdict.Options.set_max_manifest_file_size": {"fullname": "rocksdict.Options.set_max_manifest_file_size", "modulename": "rocksdict", "qualname": "Options.set_max_manifest_file_size", "type": "function", "doc": "10
The manifest file is rolled over on reaching this limit.\nThe older manifest file be deleted.\nThe default value is MAX_INT so that roll-over does not take place.
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_target_file_size_base": {"fullname": "rocksdict.Options.set_target_file_size_base", "modulename": "rocksdict", "qualname": "Options.set_target_file_size_base", "type": "function", "doc": "Sets the target file size for compaction.\ntarget_file_size_base is per-file size for level-1.\nTarget file size for level L can be calculated by\ntarget_file_size_base * (target_file_size_multiplier ^ (L-1))\nFor example, if target_file_size_base is 2MB and\ntarget_file_size_multiplier is 10, then each file on level-1 will\nbe 2MB, and each file on level 2 will be 20MB,\nand each file on level-3 will be 200MB.
\n\nDefault:
\n\n0x4000000
(64MiB)Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"fullname": "rocksdict.Options.set_min_write_buffer_number_to_merge", "modulename": "rocksdict", "qualname": "Options.set_min_write_buffer_number_to_merge", "type": "function", "doc": "Sets the minimum number of write buffers that will be merged together\nbefore writing to storage. If set to
\n\n1
, then\nall write buffers are flushed to L0 as individual files and this increases\nread amplification because a get request has to check in all of these\nfiles. Also, an in-memory merge may result in writing lesser\ndata to storage if there are duplicate records in each of these\nindividual write buffers.Default:
\n", "signature": "(self, /, to_merge):", "funcdef": "def"}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"fullname": "rocksdict.Options.set_level_zero_file_num_compaction_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_file_num_compaction_trigger", "type": "function", "doc": "1
Sets the number of files to trigger level-0 compaction. A value <
\n\n0
means that\nlevel-0 compaction will not be triggered by number of files at all.Default:
\n\n4
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"fullname": "rocksdict.Options.set_level_zero_slowdown_writes_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_slowdown_writes_trigger", "type": "function", "doc": "Sets the soft limit on number of level-0 files. We start slowing down writes at this\npoint. A value <
\n\n0
means that no writing slow down will be triggered by\nnumber of files in level-0.Default:
\n\n20
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"fullname": "rocksdict.Options.set_level_zero_stop_writes_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_stop_writes_trigger", "type": "function", "doc": "Sets the maximum number of level-0 files. We stop writes at this point.
\n\nDefault:
\n\n24
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Options.set_compaction_style": {"fullname": "rocksdict.Options.set_compaction_style", "modulename": "rocksdict", "qualname": "Options.set_compaction_style", "type": "function", "doc": "Sets the compaction style.
\n\nDefault: DBCompactionStyle.level()
\n", "signature": "(self, /, style):", "funcdef": "def"}, "rocksdict.Options.set_universal_compaction_options": {"fullname": "rocksdict.Options.set_universal_compaction_options", "modulename": "rocksdict", "qualname": "Options.set_universal_compaction_options", "type": "function", "doc": "Sets the options needed to support Universal Style compactions.
\n", "signature": "(self, /, uco):", "funcdef": "def"}, "rocksdict.Options.set_fifo_compaction_options": {"fullname": "rocksdict.Options.set_fifo_compaction_options", "modulename": "rocksdict", "qualname": "Options.set_fifo_compaction_options", "type": "function", "doc": "Sets the options for FIFO compaction style.
\n", "signature": "(self, /, fco):", "funcdef": "def"}, "rocksdict.Options.set_unordered_write": {"fullname": "rocksdict.Options.set_unordered_write", "modulename": "rocksdict", "qualname": "Options.set_unordered_write", "type": "function", "doc": "Sets unordered_write to true trades higher write throughput with\nrelaxing the immutability guarantee of snapshots. This violates the\nrepeatability one expects from ::Get from a snapshot, as well as\n:MultiGet and Iterator's consistent-point-in-time view property.\nIf the application cannot tolerate the relaxed guarantees, it can implement\nits own mechanisms to work around that and yet benefit from the higher\nthroughput. Using TransactionDB with WRITE_PREPARED write policy and\ntwo_write_queues=true is one way to achieve immutable snapshots despite\nunordered_write.
\n\nBy default, i.e., when it is false, rocksdb does not advance the sequence\nnumber for new snapshots unless all the writes with lower sequence numbers\nare already finished. This provides the immutability that we except from\nsnapshots. Moreover, since Iterator and MultiGet internally depend on\nsnapshots, the snapshot immutability results into Iterator and MultiGet\noffering consistent-point-in-time view. If set to true, although\nRead-Your-Own-Write property is still provided, the snapshot immutability\nproperty is relaxed: the writes issued after the snapshot is obtained (with\nlarger sequence numbers) will be still not visible to the reads from that\nsnapshot, however, there still might be pending writes (with lower sequence\nnumber) that will change the state visible to the snapshot after they are\nlanded to the memtable.
\n\nDefault: false
\n", "signature": "(self, /, unordered):", "funcdef": "def"}, "rocksdict.Options.set_max_subcompactions": {"fullname": "rocksdict.Options.set_max_subcompactions", "modulename": "rocksdict", "qualname": "Options.set_max_subcompactions", "type": "function", "doc": "Sets maximum number of threads that will\nconcurrently perform a compaction job by breaking it into multiple,\nsmaller ones that are run simultaneously.
\n\nDefault: 1 (i.e. no subcompactions)
\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.Options.set_max_background_jobs": {"fullname": "rocksdict.Options.set_max_background_jobs", "modulename": "rocksdict", "qualname": "Options.set_max_background_jobs", "type": "function", "doc": "Sets maximum number of concurrent background jobs\n(compactions and flushes).
\n\nDefault: 2
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, jobs):", "funcdef": "def"}, "rocksdict.Options.set_disable_auto_compactions": {"fullname": "rocksdict.Options.set_disable_auto_compactions", "modulename": "rocksdict", "qualname": "Options.set_disable_auto_compactions", "type": "function", "doc": "Disables automatic compactions. Manual compactions can still\nbe issued on this column family
\n\nDefault:
\n\nfalse
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, disable):", "funcdef": "def"}, "rocksdict.Options.set_memtable_huge_page_size": {"fullname": "rocksdict.Options.set_memtable_huge_page_size", "modulename": "rocksdict", "qualname": "Options.set_memtable_huge_page_size", "type": "function", "doc": "SetMemtableHugePageSize sets the page size for huge page for\narena used by the memtable.\nIf <=0, it won't allocate from huge page but from malloc.\nUsers are responsible to reserve huge pages for it to be allocated. For\nexample:\n sysctl -w vm.nr_hugepages=20\nSee linux doc Documentation/vm/hugetlbpage.txt\nIf there isn't enough free huge page available, it will fall back to\nmalloc.
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_max_successive_merges": {"fullname": "rocksdict.Options.set_max_successive_merges", "modulename": "rocksdict", "qualname": "Options.set_max_successive_merges", "type": "function", "doc": "Sets the maximum number of successive merge operations on a key in the memtable.
\n\nWhen a merge operation is added to the memtable and the maximum number of\nsuccessive merges is reached, the value of the key will be calculated and\ninserted into the memtable instead of the merge operation. This will\nensure that there are never more than max_successive_merges merge\noperations in the memtable.
\n\nDefault: 0 (disabled)
\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.Options.set_bloom_locality": {"fullname": "rocksdict.Options.set_bloom_locality", "modulename": "rocksdict", "qualname": "Options.set_bloom_locality", "type": "function", "doc": "Control locality of bloom filter probes to improve cache miss rate.\nThis option only applies to memtable prefix bloom and plaintable\nprefix bloom. It essentially limits the max number of cache lines each\nbloom filter check can touch.
\n\nThis optimization is turned off when set to 0. The number should never\nbe greater than number of probes. This option can boost performance\nfor in-memory workload but should use with care since it can cause\nhigher false positive rate.
\n\nDefault: 0
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.Options.set_inplace_update_support": {"fullname": "rocksdict.Options.set_inplace_update_support", "modulename": "rocksdict", "qualname": "Options.set_inplace_update_support", "type": "function", "doc": "Enable/disable thread-safe inplace updates.
\n\nRequires updates if
\n\n\n
\n\n- key exists in current memtable
\n- new sizeof(new_value) <= sizeof(old_value)
\n- old_value for that key is a put i.e. kTypeValue
\nDefault: false.
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_inplace_update_locks": {"fullname": "rocksdict.Options.set_inplace_update_locks", "modulename": "rocksdict", "qualname": "Options.set_inplace_update_locks", "type": "function", "doc": "Sets the number of locks used for inplace update.
\n\nDefault: 10000 when inplace_update_support = true, otherwise 0.
\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"fullname": "rocksdict.Options.set_max_bytes_for_level_multiplier_additional", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_multiplier_additional", "type": "function", "doc": "Different max-size multipliers for different levels.\nThese are multiplied by max_bytes_for_level_multiplier to arrive\nat the max-size of each level.
\n\nDefault: 1
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, level_values):", "funcdef": "def"}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"fullname": "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open", "modulename": "rocksdict", "qualname": "Options.set_skip_checking_sst_file_sizes_on_db_open", "type": "function", "doc": "If true, then DB::Open() will not fetch and check sizes of all sst files.\nThis may significantly speed up startup if there are many sst files,\nespecially when using non-default Env with expensive GetFileSize().\nWe'll still check that all required sst files exist.\nIf paranoid_checks is false, this option is ignored, and sst files are\nnot checked at all.
\n\nDefault: false
\n", "signature": "(self, /, value):", "funcdef": "def"}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"fullname": "rocksdict.Options.set_max_write_buffer_size_to_maintain", "modulename": "rocksdict", "qualname": "Options.set_max_write_buffer_size_to_maintain", "type": "function", "doc": "The total maximum size(bytes) of write buffers to maintain in memory\nincluding copies of buffers that have already been flushed. This parameter\nonly affects trimming of flushed buffers and does not affect flushing.\nThis controls the maximum amount of write history that will be available\nin memory for conflict checking when Transactions are used. The actual\nsize of write history (flushed Memtables) might be higher than this limit\nif further trimming will reduce write history total size below this\nlimit. For example, if max_write_buffer_size_to_maintain is set to 64MB,\nand there are three flushed Memtables, with sizes of 32MB, 20MB, 20MB.\nBecause trimming the next Memtable of size 20MB will reduce total memory\nusage to 52MB which is below the limit, RocksDB will stop trimming.
\n\nWhen using an OptimisticTransactionDB:\nIf this value is too low, some transactions may fail at commit time due\nto not being able to determine whether there were any write conflicts.
\n\nWhen using a TransactionDB:\nIf Transaction::SetSnapshot is used, TransactionDB will read either\nin-memory write buffers or SST files to do write-conflict checking.\nIncreasing this value can reduce the number of reads to SST files\ndone for conflict detection.
\n\nSetting this value to 0 will cause write buffers to be freed immediately\nafter they are flushed. If this value is set to -1,\n'max_write_buffer_number * write_buffer_size' will be used.
\n\nDefault:\nIf using a TransactionDB/OptimisticTransactionDB, the default value will\nbe set to the value of 'max_write_buffer_number * write_buffer_size'\nif it is not explicitly set by the user. Otherwise, the default is 0.
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_enable_pipelined_write": {"fullname": "rocksdict.Options.set_enable_pipelined_write", "modulename": "rocksdict", "qualname": "Options.set_enable_pipelined_write", "type": "function", "doc": "By default, a single write thread queue is maintained. The thread gets\nto the head of the queue becomes write batch group leader and responsible\nfor writing to WAL and memtable for the batch group.
\n\nIf enable_pipelined_write is true, separate write thread queue is\nmaintained for WAL write and memtable write. A write thread first enter WAL\nwriter queue and then memtable writer queue. Pending thread on the WAL\nwriter queue thus only have to wait for previous writers to finish their\nWAL writing but not the memtable writing. Enabling the feature may improve\nwrite throughput and reduce latency of the prepare phase of two-phase\ncommit.
\n\nDefault: false
\n", "signature": "(self, /, value):", "funcdef": "def"}, "rocksdict.Options.set_memtable_factory": {"fullname": "rocksdict.Options.set_memtable_factory", "modulename": "rocksdict", "qualname": "Options.set_memtable_factory", "type": "function", "doc": "Defines the underlying memtable implementation.\nSee official wiki for more information.\nDefaults to using a skiplist.
\n\nExample
\n\n\n\n", "signature": "(self, /, factory):", "funcdef": "def"}, "rocksdict.Options.set_block_based_table_factory": {"fullname": "rocksdict.Options.set_block_based_table_factory", "modulename": "rocksdict", "qualname": "Options.set_block_based_table_factory", "type": "function", "doc": "\n", "signature": "(self, /, factory):", "funcdef": "def"}, "rocksdict.Options.set_cuckoo_table_factory": {"fullname": "rocksdict.Options.set_cuckoo_table_factory", "modulename": "rocksdict", "qualname": "Options.set_cuckoo_table_factory", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options, MemtableFactory\nopts = Options()\nfactory = MemtableFactory.hash_skip_list(bucket_count=1_000_000,\n height=4,\n branching_factor=4)\n\nopts.set_allow_concurrent_memtable_write(false)\nopts.set_memtable_factory(factory)\n
Sets the table factory to a CuckooTableFactory (the default table\nfactory is a block-based table factory that provides a default\nimplementation of TableBuilder and TableReader with default\nBlockBasedTableOptions).\nSee official wiki for more information on this table format.
\n\nExample
\n\n\n\n", "signature": "(self, /, factory):", "funcdef": "def"}, "rocksdict.Options.set_plain_table_factory": {"fullname": "rocksdict.Options.set_plain_table_factory", "modulename": "rocksdict", "qualname": "Options.set_plain_table_factory", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options, CuckooTableOptions\n\nopts = Options()\nfactory_opts = CuckooTableOptions()\nfactory_opts.set_hash_ratio(0.8)\nfactory_opts.set_max_search_depth(20)\nfactory_opts.set_cuckoo_block_size(10)\nfactory_opts.set_identity_as_first_hash(true)\nfactory_opts.set_use_module_hash(false)\n\nopts.set_cuckoo_table_factory(factory_opts)\n
This is a factory that provides TableFactory objects.\nDefault: a block-based table factory that provides a default\nimplementation of TableBuilder and TableReader with default\nBlockBasedTableOptions.\nSets the factory as plain table.\nSee official wiki for more\ninformation.
\n\nExample
\n\n\n\n", "signature": "(self, /, options):", "funcdef": "def"}, "rocksdict.Options.set_min_level_to_compress": {"fullname": "rocksdict.Options.set_min_level_to_compress", "modulename": "rocksdict", "qualname": "Options.set_min_level_to_compress", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options, PlainTableFactoryOptions\n\nopts = Options()\nfactory_opts = PlainTableFactoryOptions()\nfactory_opts.user_key_length = 0\nfactory_opts.bloom_bits_per_key = 20\nfactory_opts.hash_table_ratio = 0.75\nfactory_opts.index_sparseness = 16\n\nopts.set_plain_table_factory(factory_opts)\n
Sets the start level to use compression.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, "rocksdict.Options.set_report_bg_io_stats": {"fullname": "rocksdict.Options.set_report_bg_io_stats", "modulename": "rocksdict", "qualname": "Options.set_report_bg_io_stats", "type": "function", "doc": "Measure IO stats in compactions and flushes, if
\n\ntrue
.Default:
\n", "signature": "(self, /, enable):", "funcdef": "def"}, "rocksdict.Options.set_max_total_wal_size": {"fullname": "rocksdict.Options.set_max_total_wal_size", "modulename": "rocksdict", "qualname": "Options.set_max_total_wal_size", "type": "function", "doc": "false
Once write-ahead logs exceed this size, we will start forcing the flush of\ncolumn families whose memtables are backed by the oldest live WAL file\n(i.e. the ones that are causing all the space amplification).
\n\nDefault:
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_wal_recovery_mode": {"fullname": "rocksdict.Options.set_wal_recovery_mode", "modulename": "rocksdict", "qualname": "Options.set_wal_recovery_mode", "type": "function", "doc": "0
Recovery mode to control the consistency while replaying WAL.
\n\nDefault: DBRecoveryMode::PointInTime
\n", "signature": "(self, /, mode):", "funcdef": "def"}, "rocksdict.Options.enable_statistics": {"fullname": "rocksdict.Options.enable_statistics", "modulename": "rocksdict", "qualname": "Options.enable_statistics", "type": "function", "doc": "\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Options.get_statistics": {"fullname": "rocksdict.Options.get_statistics", "modulename": "rocksdict", "qualname": "Options.get_statistics", "type": "function", "doc": "\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Options.set_stats_dump_period_sec": {"fullname": "rocksdict.Options.set_stats_dump_period_sec", "modulename": "rocksdict", "qualname": "Options.set_stats_dump_period_sec", "type": "function", "doc": "If not zero, dump
\n\nrocksdb.stats
to LOG everystats_dump_period_sec
.Default:
\n", "signature": "(self, /, period):", "funcdef": "def"}, "rocksdict.Options.set_stats_persist_period_sec": {"fullname": "rocksdict.Options.set_stats_persist_period_sec", "modulename": "rocksdict", "qualname": "Options.set_stats_persist_period_sec", "type": "function", "doc": "600
(10 mins)If not zero, dump rocksdb.stats to RocksDB to LOG every
\n\nstats_persist_period_sec
.Default:
\n", "signature": "(self, /, period):", "funcdef": "def"}, "rocksdict.Options.set_advise_random_on_open": {"fullname": "rocksdict.Options.set_advise_random_on_open", "modulename": "rocksdict", "qualname": "Options.set_advise_random_on_open", "type": "function", "doc": "600
(10 mins)When set to true, reading SST files will opt out of the filesystem's\nreadahead. Setting this to false may improve sequential iteration\nperformance.
\n\nDefault:
\n", "signature": "(self, /, advise):", "funcdef": "def"}, "rocksdict.Options.set_use_adaptive_mutex": {"fullname": "rocksdict.Options.set_use_adaptive_mutex", "modulename": "rocksdict", "qualname": "Options.set_use_adaptive_mutex", "type": "function", "doc": "true
Enable/disable adaptive mutex, which spins in the user space before resorting to kernel.
\n\nThis could reduce context switch when the mutex is not\nheavily contended. However, if the mutex is hot, we could end up\nwasting spin time.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_num_levels": {"fullname": "rocksdict.Options.set_num_levels", "modulename": "rocksdict", "qualname": "Options.set_num_levels", "type": "function", "doc": "Sets the number of levels for this database.
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"fullname": "rocksdict.Options.set_memtable_prefix_bloom_ratio", "modulename": "rocksdict", "qualname": "Options.set_memtable_prefix_bloom_ratio", "type": "function", "doc": "When a
\n\nprefix_extractor
is defined throughopts.set_prefix_extractor
this\ncreates a prefix bloom filter for each memtable with the size of\nwrite_buffer_size * memtable_prefix_bloom_ratio
(capped at 0.25).Default:
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, "rocksdict.Options.set_max_compaction_bytes": {"fullname": "rocksdict.Options.set_max_compaction_bytes", "modulename": "rocksdict", "qualname": "Options.set_max_compaction_bytes", "type": "function", "doc": "0
Sets the maximum number of bytes in all compacted files.\nWe try to limit number of bytes in one compaction to be lower than this\nthreshold. But it's not guaranteed.
\n\nValue 0 will be sanitized.
\n\nDefault: target_file_size_base * 25
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, "rocksdict.Options.set_wal_dir": {"fullname": "rocksdict.Options.set_wal_dir", "modulename": "rocksdict", "qualname": "Options.set_wal_dir", "type": "function", "doc": "Specifies the absolute path of the directory the\nwrite-ahead log (WAL) should be written to.
\n\nDefault: same directory as the database
\n", "signature": "(self, /, path):", "funcdef": "def"}, "rocksdict.Options.set_wal_ttl_seconds": {"fullname": "rocksdict.Options.set_wal_ttl_seconds", "modulename": "rocksdict", "qualname": "Options.set_wal_ttl_seconds", "type": "function", "doc": "Sets the WAL ttl in seconds.
\n\nThe following two options affect how archived logs will be deleted.
\n\n\n
\n\n- If both set to 0, logs will be deleted asap and will not get into\nthe archive.
\n- If wal_ttl_seconds is 0 and wal_size_limit_mb is not 0,\nWAL files will be checked every 10 min and if total size is greater\nthen wal_size_limit_mb, they will be deleted starting with the\nearliest until size_limit is met. All empty files will be deleted.
\n- If wal_ttl_seconds is not 0 and wall_size_limit_mb is 0, then\nWAL files will be checked every wal_ttl_seconds / 2 and those that\nare older than wal_ttl_seconds will be deleted.
\n- If both are not 0, WAL files will be checked every 10 min and both\nchecks will be performed with ttl being first.
\nDefault: 0
\n", "signature": "(self, /, secs):", "funcdef": "def"}, "rocksdict.Options.set_wal_size_limit_mb": {"fullname": "rocksdict.Options.set_wal_size_limit_mb", "modulename": "rocksdict", "qualname": "Options.set_wal_size_limit_mb", "type": "function", "doc": "Sets the WAL size limit in MB.
\n\nIf total size of WAL files is greater then wal_size_limit_mb,\nthey will be deleted starting with the earliest until size_limit is met.
\n\nDefault: 0
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_manifest_preallocation_size": {"fullname": "rocksdict.Options.set_manifest_preallocation_size", "modulename": "rocksdict", "qualname": "Options.set_manifest_preallocation_size", "type": "function", "doc": "Sets the number of bytes to preallocate (via fallocate) the manifest files.
\n\nDefault is 4MB, which is reasonable to reduce random IO\nas well as prevent overallocation for mounts that preallocate\nlarge amounts of data (such as xfs's allocsize option).
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"fullname": "rocksdict.Options.set_skip_stats_update_on_db_open", "modulename": "rocksdict", "qualname": "Options.set_skip_stats_update_on_db_open", "type": "function", "doc": "If true, then DB::Open() will not update the statistics used to optimize\ncompaction decision by loading table properties from many files.\nTurning off this feature will improve DBOpen time especially in disk environment.
\n\nDefault: false
\n", "signature": "(self, /, skip):", "funcdef": "def"}, "rocksdict.Options.set_keep_log_file_num": {"fullname": "rocksdict.Options.set_keep_log_file_num", "modulename": "rocksdict", "qualname": "Options.set_keep_log_file_num", "type": "function", "doc": "Specify the maximal number of info log files to be kept.
\n\nDefault: 1000
\n", "signature": "(self, /, nfiles):", "funcdef": "def"}, "rocksdict.Options.set_allow_mmap_writes": {"fullname": "rocksdict.Options.set_allow_mmap_writes", "modulename": "rocksdict", "qualname": "Options.set_allow_mmap_writes", "type": "function", "doc": "Allow the OS to mmap file for writing.
\n\nDefault: false
\n", "signature": "(self, /, is_enabled):", "funcdef": "def"}, "rocksdict.Options.set_allow_mmap_reads": {"fullname": "rocksdict.Options.set_allow_mmap_reads", "modulename": "rocksdict", "qualname": "Options.set_allow_mmap_reads", "type": "function", "doc": "Allow the OS to mmap file for reading sst tables.
\n\nDefault: false
\n", "signature": "(self, /, is_enabled):", "funcdef": "def"}, "rocksdict.Options.set_atomic_flush": {"fullname": "rocksdict.Options.set_atomic_flush", "modulename": "rocksdict", "qualname": "Options.set_atomic_flush", "type": "function", "doc": "Guarantee that all column families are flushed together atomically.\nThis option applies to both manual flushes (
\n\ndb.flush()
) and automatic\nbackground flushes caused when memtables are filled.Note that this is only useful when the WAL is disabled. When using the\nWAL, writes are always consistent across column families.
\n\nDefault: false
\n", "signature": "(self, /, atomic_flush):", "funcdef": "def"}, "rocksdict.Options.set_row_cache": {"fullname": "rocksdict.Options.set_row_cache", "modulename": "rocksdict", "qualname": "Options.set_row_cache", "type": "function", "doc": "Sets global cache for table-level rows. Cache must outlive DB instance which uses it.
\n\nDefault: null (disabled)\nNot supported in ROCKSDB_LITE mode!
\n", "signature": "(self, /, cache):", "funcdef": "def"}, "rocksdict.Options.set_ratelimiter": {"fullname": "rocksdict.Options.set_ratelimiter", "modulename": "rocksdict", "qualname": "Options.set_ratelimiter", "type": "function", "doc": "Use to control write rate of flush and compaction. Flush has higher\npriority than compaction.\nIf rate limiter is enabled, bytes_per_sync is set to 1MB by default.
\n\nDefault: disable
\n", "signature": "(self, /, rate_bytes_per_sec, refill_period_us, fairness):", "funcdef": "def"}, "rocksdict.Options.set_max_log_file_size": {"fullname": "rocksdict.Options.set_max_log_file_size", "modulename": "rocksdict", "qualname": "Options.set_max_log_file_size", "type": "function", "doc": "Sets the maximal size of the info log file.
\n\nIf the log file is larger than
\n\nmax_log_file_size
, a new info log file\nwill be created. Ifmax_log_file_size
is equal to zero, all logs will\nbe written to one log file.Default: 0
\n\nExample
\n\n\n\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_log_file_time_to_roll": {"fullname": "rocksdict.Options.set_log_file_time_to_roll", "modulename": "rocksdict", "qualname": "Options.set_log_file_time_to_roll", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options\n\noptions = Options()\noptions.set_max_log_file_size(0)\n
Sets the time for the info log file to roll (in seconds).
\n\nIf specified with non-zero value, log file will be rolled\nif it has been active longer than
\n", "signature": "(self, /, secs):", "funcdef": "def"}, "rocksdict.Options.set_recycle_log_file_num": {"fullname": "rocksdict.Options.set_recycle_log_file_num", "modulename": "rocksdict", "qualname": "Options.set_recycle_log_file_num", "type": "function", "doc": "log_file_time_to_roll
.\nDefault: 0 (disabled)Controls the recycling of log files.
\n\nIf non-zero, previously written log files will be reused for new logs,\noverwriting the old data. The value indicates how many such files we will\nkeep around at any point in time for later use. This is more efficient\nbecause the blocks are already allocated and fdatasync does not need to\nupdate the inode after each write.
\n\nDefault: 0
\n\nExample
\n\n\n\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"fullname": "rocksdict.Options.set_soft_pending_compaction_bytes_limit", "modulename": "rocksdict", "qualname": "Options.set_soft_pending_compaction_bytes_limit", "type": "function", "doc": "::
\n\n\nfrom rocksdict import Options\n\noptions = Options()\noptions.set_recycle_log_file_num(5)\n
Sets the threshold at which all writes will be slowed down to at least delayed_write_rate if estimated\nbytes needed to be compaction exceed this threshold.
\n\nDefault: 64GB
\n", "signature": "(self, /, limit):", "funcdef": "def"}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"fullname": "rocksdict.Options.set_hard_pending_compaction_bytes_limit", "modulename": "rocksdict", "qualname": "Options.set_hard_pending_compaction_bytes_limit", "type": "function", "doc": "Sets the bytes threshold at which all writes are stopped if estimated bytes needed to be compaction exceed\nthis threshold.
\n\nDefault: 256GB
\n", "signature": "(self, /, limit):", "funcdef": "def"}, "rocksdict.Options.set_arena_block_size": {"fullname": "rocksdict.Options.set_arena_block_size", "modulename": "rocksdict", "qualname": "Options.set_arena_block_size", "type": "function", "doc": "Sets the size of one block in arena memory allocation.
\n\nIf <= 0, a proper value is automatically calculated (usually 1/10 of\nwriter_buffer_size).
\n\nDefault: 0
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.Options.set_dump_malloc_stats": {"fullname": "rocksdict.Options.set_dump_malloc_stats", "modulename": "rocksdict", "qualname": "Options.set_dump_malloc_stats", "type": "function", "doc": "If true, then print malloc stats together with rocksdb.stats when printing to LOG.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, "rocksdict.Options.set_memtable_whole_key_filtering": {"fullname": "rocksdict.Options.set_memtable_whole_key_filtering", "modulename": "rocksdict", "qualname": "Options.set_memtable_whole_key_filtering", "type": "function", "doc": "Enable whole key bloom filter in memtable. Note this will only take effect\nif memtable_prefix_bloom_size_ratio is not 0. Enabling whole key filtering\ncan potentially reduce CPU usage for point-look-ups.
\n\nDefault: false (disable)
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, whole_key_filter):", "funcdef": "def"}, "rocksdict.ReadOptions": {"fullname": "rocksdict.ReadOptions", "modulename": "rocksdict", "qualname": "ReadOptions", "type": "class", "doc": "ReadOptions allows setting iterator bounds and so on.
\n\nArgs
\n\n\n
\n"}, "rocksdict.ReadOptions.__init__": {"fullname": "rocksdict.ReadOptions.__init__", "modulename": "rocksdict", "qualname": "ReadOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.ReadOptions.fill_cache": {"fullname": "rocksdict.ReadOptions.fill_cache", "modulename": "rocksdict", "qualname": "ReadOptions.fill_cache", "type": "function", "doc": "- raw_mode (bool): this must be the same as
\nOptions
raw_mode\nargument.Specify whether the \"data block\"/\"index block\"/\"filter block\"\nread for this iteration should be cached in memory?\nCallers may wish to set this field to false for bulk scans.
\n\nDefault: true
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"fullname": "rocksdict.ReadOptions.set_iterate_upper_bound", "modulename": "rocksdict", "qualname": "ReadOptions.set_iterate_upper_bound", "type": "function", "doc": "Sets the upper bound for an iterator.
\n", "signature": "(self, /, key):", "funcdef": "def"}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"fullname": "rocksdict.ReadOptions.set_iterate_lower_bound", "modulename": "rocksdict", "qualname": "ReadOptions.set_iterate_lower_bound", "type": "function", "doc": "Sets the lower bound for an iterator.
\n", "signature": "(self, /, key):", "funcdef": "def"}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"fullname": "rocksdict.ReadOptions.set_prefix_same_as_start", "modulename": "rocksdict", "qualname": "ReadOptions.set_prefix_same_as_start", "type": "function", "doc": "Enforce that the iterator only iterates over the same\nprefix as the seek.\nThis option is effective only for prefix seeks, i.e. prefix_extractor is\nnon-null for the column family and total_order_seek is false. Unlike\niterate_upper_bound, prefix_same_as_start only works within a prefix\nbut in both directions.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_total_order_seek": {"fullname": "rocksdict.ReadOptions.set_total_order_seek", "modulename": "rocksdict", "qualname": "ReadOptions.set_total_order_seek", "type": "function", "doc": "Enable a total order seek regardless of index format (e.g. hash index)\nused in the table. Some table format (e.g. plain table) may not support\nthis option.
\n\nIf true when calling Get(), we also skip prefix bloom when reading from\nblock based table. It provides a way to read existing data after\nchanging implementation of prefix extractor.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"fullname": "rocksdict.ReadOptions.set_max_skippable_internal_keys", "modulename": "rocksdict", "qualname": "ReadOptions.set_max_skippable_internal_keys", "type": "function", "doc": "Sets a threshold for the number of keys that can be skipped\nbefore failing an iterator seek as incomplete. The default value of 0 should be used to\nnever fail a request as incomplete, even on skipping too many keys.
\n\nDefault: 0
\n", "signature": "(self, /, num):", "funcdef": "def"}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"fullname": "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup", "modulename": "rocksdict", "qualname": "ReadOptions.set_background_purge_on_iterator_cleanup", "type": "function", "doc": "If true, when PurgeObsoleteFile is called in CleanupIteratorState, we schedule a background job\nin the flush job queue and delete obsolete files in background.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"fullname": "rocksdict.ReadOptions.set_ignore_range_deletions", "modulename": "rocksdict", "qualname": "ReadOptions.set_ignore_range_deletions", "type": "function", "doc": "If true, keys deleted using the DeleteRange() API will be visible to\nreaders until they are naturally deleted during compaction. This improves\nread performance in DBs with many range deletions.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_verify_checksums": {"fullname": "rocksdict.ReadOptions.set_verify_checksums", "modulename": "rocksdict", "qualname": "ReadOptions.set_verify_checksums", "type": "function", "doc": "If true, all data read from underlying storage will be\nverified against corresponding checksums.
\n\nDefault: true
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_readahead_size": {"fullname": "rocksdict.ReadOptions.set_readahead_size", "modulename": "rocksdict", "qualname": "ReadOptions.set_readahead_size", "type": "function", "doc": "If non-zero, an iterator will create a new table reader which\nperforms reads of the given size. Using a large size (> 2MB) can\nimprove the performance of forward iteration on spinning disks.\nDefault: 0
\n\nfrom rocksdict import ReadOptions
\n\nopts = ReadOptions()\nopts.set_readahead_size(4_194_304) # 4mb
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_tailing": {"fullname": "rocksdict.ReadOptions.set_tailing", "modulename": "rocksdict", "qualname": "ReadOptions.set_tailing", "type": "function", "doc": "If true, create a tailing iterator. Note that tailing iterators\nonly support moving in the forward direction. Iterating in reverse\nor seek_to_last are not supported.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_pin_data": {"fullname": "rocksdict.ReadOptions.set_pin_data", "modulename": "rocksdict", "qualname": "ReadOptions.set_pin_data", "type": "function", "doc": "Specifies the value of \"pin_data\". If true, it keeps the blocks\nloaded by the iterator pinned in memory as long as the iterator is not deleted,\nIf used when reading from tables created with\nBlockBasedTableOptions::use_delta_encoding = false,\nIterator's property \"rocksdb.iterator.is-key-pinned\" is guaranteed to\nreturn 1.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ReadOptions.set_async_io": {"fullname": "rocksdict.ReadOptions.set_async_io", "modulename": "rocksdict", "qualname": "ReadOptions.set_async_io", "type": "function", "doc": "Asynchronously prefetch some data.
\n\nUsed for sequential reads and internal automatic prefetching.
\n\nDefault:
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.ColumnFamily": {"fullname": "rocksdict.ColumnFamily", "modulename": "rocksdict", "qualname": "ColumnFamily", "type": "class", "doc": "false
Column family handle. This can be used in WriteBatch to specify Column Family.
\n"}, "rocksdict.ColumnFamily.__init__": {"fullname": "rocksdict.ColumnFamily.__init__", "modulename": "rocksdict", "qualname": "ColumnFamily.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.IngestExternalFileOptions": {"fullname": "rocksdict.IngestExternalFileOptions", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions", "type": "class", "doc": "\n"}, "rocksdict.IngestExternalFileOptions.__init__": {"fullname": "rocksdict.IngestExternalFileOptions.__init__", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.IngestExternalFileOptions.set_move_files": {"fullname": "rocksdict.IngestExternalFileOptions.set_move_files", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_move_files", "type": "function", "doc": "Can be set to true to move the files instead of copying them.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"fullname": "rocksdict.IngestExternalFileOptions.set_snapshot_consistency", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_snapshot_consistency", "type": "function", "doc": "If set to false, an ingested file keys could appear in existing snapshots\nthat where created before the file was ingested.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"fullname": "rocksdict.IngestExternalFileOptions.set_allow_global_seqno", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_allow_global_seqno", "type": "function", "doc": "If set to false, IngestExternalFile() will fail if the file key range\noverlaps with existing keys or tombstones in the DB.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"fullname": "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_allow_blocking_flush", "type": "function", "doc": "If set to false and the file key range overlaps with the memtable key range\n(memtable flush required), IngestExternalFile will fail.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"fullname": "rocksdict.IngestExternalFileOptions.set_ingest_behind", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_ingest_behind", "type": "function", "doc": "Set to true if you would like duplicate keys in the file being ingested\nto be skipped rather than overwriting existing data under that key.\nUsecase: back-fill of some historical data in the database without\nover-writing existing newer version of data.\nThis option could only be used if the DB has been running\nwith allow_ingest_behind=true since the dawn of time.\nAll files will be ingested at the bottommost level with seqno=0.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.DBPath": {"fullname": "rocksdict.DBPath", "modulename": "rocksdict", "qualname": "DBPath", "type": "class", "doc": "\n"}, "rocksdict.DBPath.__init__": {"fullname": "rocksdict.DBPath.__init__", "modulename": "rocksdict", "qualname": "DBPath.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.MemtableFactory": {"fullname": "rocksdict.MemtableFactory", "modulename": "rocksdict", "qualname": "MemtableFactory", "type": "class", "doc": "Defines the underlying memtable implementation.\nSee official wiki for more information.
\n"}, "rocksdict.MemtableFactory.__init__": {"fullname": "rocksdict.MemtableFactory.__init__", "modulename": "rocksdict", "qualname": "MemtableFactory.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.MemtableFactory.vector": {"fullname": "rocksdict.MemtableFactory.vector", "modulename": "rocksdict", "qualname": "MemtableFactory.vector", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.MemtableFactory.hash_skip_list": {"fullname": "rocksdict.MemtableFactory.hash_skip_list", "modulename": "rocksdict", "qualname": "MemtableFactory.hash_skip_list", "type": "function", "doc": "\n", "signature": "(bucket_count, height, branching_factor):", "funcdef": "def"}, "rocksdict.MemtableFactory.hash_link_list": {"fullname": "rocksdict.MemtableFactory.hash_link_list", "modulename": "rocksdict", "qualname": "MemtableFactory.hash_link_list", "type": "function", "doc": "\n", "signature": "(bucket_count):", "funcdef": "def"}, "rocksdict.BlockBasedOptions": {"fullname": "rocksdict.BlockBasedOptions", "modulename": "rocksdict", "qualname": "BlockBasedOptions", "type": "class", "doc": "For configuring block-based file storage.
\n"}, "rocksdict.BlockBasedOptions.__init__": {"fullname": "rocksdict.BlockBasedOptions.__init__", "modulename": "rocksdict", "qualname": "BlockBasedOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.BlockBasedOptions.set_block_size": {"fullname": "rocksdict.BlockBasedOptions.set_block_size", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_size", "type": "function", "doc": "Approximate size of user data packed per block. Note that the\nblock size specified here corresponds to uncompressed data. The\nactual size of the unit read from disk may be smaller if\ncompression is enabled. This parameter can be changed dynamically.
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"fullname": "rocksdict.BlockBasedOptions.set_metadata_block_size", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_metadata_block_size", "type": "function", "doc": "Block size for partitioned metadata. Currently applied to indexes when\nkTwoLevelIndexSearch is used and to filters when partition_filters is used.\nNote: Since in the current implementation the filters and index partitions\nare aligned, an index/filter block is created when either index or filter\nblock size reaches the specified limit.
\n\nNote: this limit is currently applied to only index blocks; a filter\npartition is cut right after an index block is cut.
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_partition_filters": {"fullname": "rocksdict.BlockBasedOptions.set_partition_filters", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_partition_filters", "type": "function", "doc": "Note: currently this option requires kTwoLevelIndexSearch to be set as\nwell.
\n\nUse partitioned full filters for each SST file. This option is\nincompatible with block-based filters.
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_block_cache": {"fullname": "rocksdict.BlockBasedOptions.set_block_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_cache", "type": "function", "doc": "Sets global cache for blocks (user data is stored in a set of blocks, and\na block is the unit of reading from disk). Cache must outlive DB instance which uses it.
\n\nIf set, use the specified cache for blocks.\nBy default, rocksdb will automatically create and use an 8MB internal cache.
\n", "signature": "(self, /, cache):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.disable_cache": {"fullname": "rocksdict.BlockBasedOptions.disable_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.disable_cache", "type": "function", "doc": "Disable block cache
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"fullname": "rocksdict.BlockBasedOptions.set_bloom_filter", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_bloom_filter", "type": "function", "doc": "Sets the filter policy to reduce disk read
\n", "signature": "(self, /, bits_per_key, block_based):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"fullname": "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_cache_index_and_filter_blocks", "type": "function", "doc": "\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_index_type": {"fullname": "rocksdict.BlockBasedOptions.set_index_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_index_type", "type": "function", "doc": "Defines the index type to be used for SS-table lookups.
\n\nExample
\n\n\n\n", "signature": "(self, /, index_type):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"fullname": "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache", "type": "function", "doc": "::
\n\n\nfrom rocksdict import BlockBasedOptions, BlockBasedIndexType, Options\n\nopts = Options()\nblock_opts = BlockBasedOptions()\nblock_opts.set_index_type(BlockBasedIndexType.hash_search())\nopts.set_block_based_table_factory(block_opts)\n
If cache_index_and_filter_blocks is true and the below is true, then\nfilter and index blocks are stored in the cache, but a reference is\nheld in the \"table reader\" object so the blocks are pinned and only\nevicted from cache when the table reader is freed.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"fullname": "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_pin_top_level_index_and_filter", "type": "function", "doc": "If cache_index_and_filter_blocks is true and the below is true, then\nthe top-level index of partitioned filter and index blocks are stored in\nthe cache, but a reference is held in the \"table reader\" object so the\nblocks are pinned and only evicted from cache when the table reader is\nfreed. This is not limited to l0 in LSM tree.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_format_version": {"fullname": "rocksdict.BlockBasedOptions.set_format_version", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_format_version", "type": "function", "doc": "Format version, reserved for backward compatibility.
\n\nSee full list\nof the supported versions.
\n\nDefault: 2.
\n", "signature": "(self, /, version):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"fullname": "rocksdict.BlockBasedOptions.set_block_restart_interval", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_restart_interval", "type": "function", "doc": "Number of keys between restart points for delta encoding of keys.\nThis parameter can be changed dynamically. Most clients should\nleave this parameter alone. The minimum value allowed is 1. Any smaller\nvalue will be silently overwritten with 1.
\n\nDefault: 16.
\n", "signature": "(self, /, interval):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"fullname": "rocksdict.BlockBasedOptions.set_index_block_restart_interval", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_index_block_restart_interval", "type": "function", "doc": "Same as block_restart_interval but used for the index block.\nIf you don't plan to run RocksDB before version 5.16 and you are\nusing
\n\nindex_block_restart_interval
> 1, you should\nprobably set theformat_version
to >= 4 as it would reduce the index size.Default: 1.
\n", "signature": "(self, /, interval):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"fullname": "rocksdict.BlockBasedOptions.set_data_block_index_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_data_block_index_type", "type": "function", "doc": "Set the data block index type for point lookups
\n\n\n\n\n\n
DataBlockIndexType::BinarySearch
to use binary search within the data block.\nDataBlockIndexType::BinaryAndHash
to use the data block hash index in combination with\n the normal binary search.The hash table utilization ratio is adjustable using
\n\nset_data_block_hash_ratio
, which is\nvalid only when usingDataBlockIndexType::BinaryAndHash
.Default:
\n\nBinarySearch
Example
\n\n\n\n", "signature": "(self, /, index_type):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"fullname": "rocksdict.BlockBasedOptions.set_data_block_hash_ratio", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_data_block_hash_ratio", "type": "function", "doc": "::
\n\n\nfrom rocksdict import BlockBasedOptions, BlockBasedIndexType, Options\n\nopts = Options()\nblock_opts = BlockBasedOptions()\nblock_opts.set_data_block_index_type(DataBlockIndexType.binary_and_hash())\nblock_opts.set_data_block_hash_ratio(0.85)\nopts.set_block_based_table_factory(block_opts)\n
Set the data block hash index utilization ratio.
\n\nThe smaller the utilization ratio, the less hash collisions happen, and so reduce the risk for a\npoint lookup to fall back to binary search due to the collisions. A small ratio means faster\nlookup at the price of more space overhead.
\n\nDefault: 0.75
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, "rocksdict.BlockBasedOptions.set_checksum_type": {"fullname": "rocksdict.BlockBasedOptions.set_checksum_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_checksum_type", "type": "function", "doc": "Use the specified checksum type.\nNewly created table files will be protected with this checksum type.\nOld table files will still be readable, even though they have different checksum type.
\n", "signature": "(self, /, checksum_type):", "funcdef": "def"}, "rocksdict.PlainTableFactoryOptions": {"fullname": "rocksdict.PlainTableFactoryOptions", "modulename": "rocksdict", "qualname": "PlainTableFactoryOptions", "type": "class", "doc": "Used with DBOptions::set_plain_table_factory.\nSee official wiki for more\ninformation.
\n\nDefaults
\n\n\n\n"}, "rocksdict.PlainTableFactoryOptions.__init__": {"fullname": "rocksdict.PlainTableFactoryOptions.__init__", "modulename": "rocksdict", "qualname": "PlainTableFactoryOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.CuckooTableOptions": {"fullname": "rocksdict.CuckooTableOptions", "modulename": "rocksdict", "qualname": "CuckooTableOptions", "type": "class", "doc": "user_key_length: 0 (variable length)\n bloom_bits_per_key: 10\n hash_table_ratio: 0.75\n index_sparseness: 16
\nConfiguration of cuckoo-based storage.
\n"}, "rocksdict.CuckooTableOptions.__init__": {"fullname": "rocksdict.CuckooTableOptions.__init__", "modulename": "rocksdict", "qualname": "CuckooTableOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"fullname": "rocksdict.CuckooTableOptions.set_hash_ratio", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_hash_ratio", "type": "function", "doc": "Determines the utilization of hash tables. Smaller values\nresult in larger hash tables with fewer collisions.\nDefault: 0.9
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"fullname": "rocksdict.CuckooTableOptions.set_max_search_depth", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_max_search_depth", "type": "function", "doc": "A property used by builder to determine the depth to go to\nto search for a path to displace elements in case of\ncollision. See Builder.MakeSpaceForKey method. Higher\nvalues result in more efficient hash tables with fewer\nlookups but take more time to build.\nDefault: 100
\n", "signature": "(self, /, depth):", "funcdef": "def"}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"fullname": "rocksdict.CuckooTableOptions.set_cuckoo_block_size", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_cuckoo_block_size", "type": "function", "doc": "In case of collision while inserting, the builder\nattempts to insert in the next cuckoo_block_size\nlocations before skipping over to the next Cuckoo hash\nfunction. This makes lookups more cache friendly in case\nof collisions.\nDefault: 5
\n", "signature": "(self, /, size):", "funcdef": "def"}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"fullname": "rocksdict.CuckooTableOptions.set_identity_as_first_hash", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_identity_as_first_hash", "type": "function", "doc": "If this option is enabled, user key is treated as uint64_t and its value\nis used as hash value directly. This option changes builder's behavior.\nReader ignore this option and behave according to what specified in\ntable property.\nDefault: false
\n", "signature": "(self, /, flag):", "funcdef": "def"}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"fullname": "rocksdict.CuckooTableOptions.set_use_module_hash", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_use_module_hash", "type": "function", "doc": "If this option is set to true, module is used during hash calculation.\nThis often yields better space efficiency at the cost of performance.\nIf this option is set to false, # of entries in table is constrained to\nbe power of two, and bit and is used to calculate hash, which is faster in general.\nDefault: true
\n", "signature": "(self, /, flag):", "funcdef": "def"}, "rocksdict.UniversalCompactOptions": {"fullname": "rocksdict.UniversalCompactOptions", "modulename": "rocksdict", "qualname": "UniversalCompactOptions", "type": "class", "doc": "\n"}, "rocksdict.UniversalCompactOptions.__init__": {"fullname": "rocksdict.UniversalCompactOptions.__init__", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.UniversalCompactOptions.min_merge_width": {"fullname": "rocksdict.UniversalCompactOptions.min_merge_width", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.min_merge_width", "type": "variable", "doc": "Sets the minimum number of files in a single compaction run.
\n\nDefault: 2
\n"}, "rocksdict.UniversalCompactOptions.size_ratio": {"fullname": "rocksdict.UniversalCompactOptions.size_ratio", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.size_ratio", "type": "variable", "doc": "Sets the percentage flexibility while comparing file size.\nIf the candidate file(s) size is 1% smaller than the next file's size,\nthen include next file into this candidate set.
\n\nDefault: 1
\n"}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"fullname": "rocksdict.UniversalCompactOptions.max_size_amplification_percent", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.max_size_amplification_percent", "type": "variable", "doc": "sets the size amplification.
\n\nIt is defined as the amount (in percentage) of\nadditional storage needed to store a single byte of data in the database.\nFor example, a size amplification of 2% means that a database that\ncontains 100 bytes of user-data may occupy upto 102 bytes of\nphysical storage. By this definition, a fully compacted database has\na size amplification of 0%. Rocksdb uses the following heuristic\nto calculate size amplification: it assumes that all files excluding\nthe earliest file contribute to the size amplification.
\n\nDefault: 200, which means that a 100 byte database could require upto 300 bytes of storage.
\n"}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"fullname": "rocksdict.UniversalCompactOptions.compression_size_percent", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.compression_size_percent", "type": "variable", "doc": "Sets the percentage of compression size.
\n\nIf this option is set to be -1, all the output files\nwill follow compression type specified.
\n\nIf this option is not negative, we will try to make sure compressed\nsize is just above this value. In normal cases, at least this percentage\nof data will be compressed.\nWhen we are compacting to a new file, here is the criteria whether\nit needs to be compressed: assuming here are the list of files sorted\nby generation time:\n A1...An B1...Bm C1...Ct\nwhere A1 is the newest and Ct is the oldest, and we are going to compact\nB1...Bm, we calculate the total size of all the files as total_size, as\nwell as the total size of C1...Ct as total_C, the compaction output file\nwill be compressed iff\n total_C / total_size < this percentage
\n\nDefault: -1
\n"}, "rocksdict.UniversalCompactOptions.stop_style": {"fullname": "rocksdict.UniversalCompactOptions.stop_style", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.stop_style", "type": "variable", "doc": "Sets the algorithm used to stop picking files into a single compaction run.
\n\nDefault: ::Total
\n"}, "rocksdict.UniversalCompactOptions.max_merge_width": {"fullname": "rocksdict.UniversalCompactOptions.max_merge_width", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.max_merge_width", "type": "variable", "doc": "Sets the maximum number of files in a single compaction run.
\n\nDefault: UINT_MAX
\n"}, "rocksdict.UniversalCompactionStopStyle": {"fullname": "rocksdict.UniversalCompactionStopStyle", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle", "type": "class", "doc": "\n"}, "rocksdict.UniversalCompactionStopStyle.__init__": {"fullname": "rocksdict.UniversalCompactionStopStyle.__init__", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.UniversalCompactionStopStyle.similar": {"fullname": "rocksdict.UniversalCompactionStopStyle.similar", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.similar", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.UniversalCompactionStopStyle.total": {"fullname": "rocksdict.UniversalCompactionStopStyle.total", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.total", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.SliceTransform": {"fullname": "rocksdict.SliceTransform", "modulename": "rocksdict", "qualname": "SliceTransform", "type": "class", "doc": "\n"}, "rocksdict.SliceTransform.__init__": {"fullname": "rocksdict.SliceTransform.__init__", "modulename": "rocksdict", "qualname": "SliceTransform.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.SliceTransform.create_fixed_prefix": {"fullname": "rocksdict.SliceTransform.create_fixed_prefix", "modulename": "rocksdict", "qualname": "SliceTransform.create_fixed_prefix", "type": "function", "doc": "\n", "signature": "(len):", "funcdef": "def"}, "rocksdict.SliceTransform.create_max_len_prefix": {"fullname": "rocksdict.SliceTransform.create_max_len_prefix", "modulename": "rocksdict", "qualname": "SliceTransform.create_max_len_prefix", "type": "function", "doc": "prefix max length at
\n", "signature": "(len):", "funcdef": "def"}, "rocksdict.SliceTransform.create_noop": {"fullname": "rocksdict.SliceTransform.create_noop", "modulename": "rocksdict", "qualname": "SliceTransform.create_noop", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DataBlockIndexType": {"fullname": "rocksdict.DataBlockIndexType", "modulename": "rocksdict", "qualname": "DataBlockIndexType", "type": "class", "doc": "\n"}, "rocksdict.DataBlockIndexType.__init__": {"fullname": "rocksdict.DataBlockIndexType.__init__", "modulename": "rocksdict", "qualname": "DataBlockIndexType.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.DataBlockIndexType.binary_search": {"fullname": "rocksdict.DataBlockIndexType.binary_search", "modulename": "rocksdict", "qualname": "DataBlockIndexType.binary_search", "type": "function", "doc": "len
. If key is longer thanlen
,\nthe prefix will have lengthlen
, if key is shorter thanlen
,\nthe prefix will have the same length aslen
.Use binary search when performing point lookup for keys in data blocks.\nThis is the default.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.DataBlockIndexType.binary_and_hash": {"fullname": "rocksdict.DataBlockIndexType.binary_and_hash", "modulename": "rocksdict", "qualname": "DataBlockIndexType.binary_and_hash", "type": "function", "doc": "Appends a compact hash table to the end of the data block for efficient indexing. Backwards\ncompatible with databases created without this feature. Once turned on, existing data will\nbe gradually converted to the hash index format.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BlockBasedIndexType": {"fullname": "rocksdict.BlockBasedIndexType", "modulename": "rocksdict", "qualname": "BlockBasedIndexType", "type": "class", "doc": "\n"}, "rocksdict.BlockBasedIndexType.__init__": {"fullname": "rocksdict.BlockBasedIndexType.__init__", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.BlockBasedIndexType.binary_search": {"fullname": "rocksdict.BlockBasedIndexType.binary_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.binary_search", "type": "function", "doc": "A space efficient index block that is optimized for\nbinary-search-based index.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BlockBasedIndexType.hash_search": {"fullname": "rocksdict.BlockBasedIndexType.hash_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.hash_search", "type": "function", "doc": "The hash index, if enabled, will perform a hash lookup if\na prefix extractor has been provided through Options::set_prefix_extractor.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"fullname": "rocksdict.BlockBasedIndexType.two_level_index_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.two_level_index_search", "type": "function", "doc": "A two-level index implementation. Both levels are binary search indexes.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.Cache": {"fullname": "rocksdict.Cache", "modulename": "rocksdict", "qualname": "Cache", "type": "class", "doc": "\n"}, "rocksdict.Cache.__init__": {"fullname": "rocksdict.Cache.__init__", "modulename": "rocksdict", "qualname": "Cache.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.Cache.new_hyper_clock_cache": {"fullname": "rocksdict.Cache.new_hyper_clock_cache", "modulename": "rocksdict", "qualname": "Cache.new_hyper_clock_cache", "type": "function", "doc": "Creates a HyperClockCache with capacity in bytes.
\n\n\n\n
estimated_entry_charge
is an important tuning parameter. The optimal\nchoice at any given time is\n(cache.get_usage() - 64 * cache.get_table_address_count()) /\ncache.get_occupancy_count()
, or approximatelycache.get_usage() /\ncache.get_occupancy_count()
.However, the value cannot be changed dynamically, so as the cache\ncomposition changes at runtime, the following tradeoffs apply:
\n\n\n
\n\n- If the estimate is substantially too high (e.g., 25% higher),\nthe cache may have to evict entries to prevent load factors that\nwould dramatically affect lookup times.
\n- If the estimate is substantially too low (e.g., less than half),\nthen meta data space overhead is substantially higher.
\nThe latter is generally preferable, and picking the larger of\nblock size and meta data block size is a reasonable choice that\nerrs towards this side.
\n", "signature": "(capacity, estimated_entry_charge):", "funcdef": "def"}, "rocksdict.Cache.get_usage": {"fullname": "rocksdict.Cache.get_usage", "modulename": "rocksdict", "qualname": "Cache.get_usage", "type": "function", "doc": "Returns the Cache memory usage
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Cache.get_pinned_usage": {"fullname": "rocksdict.Cache.get_pinned_usage", "modulename": "rocksdict", "qualname": "Cache.get_pinned_usage", "type": "function", "doc": "Returns pinned memory usage
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Cache.set_capacity": {"fullname": "rocksdict.Cache.set_capacity", "modulename": "rocksdict", "qualname": "Cache.set_capacity", "type": "function", "doc": "Sets cache capacity
\n", "signature": "(self, /, capacity):", "funcdef": "def"}, "rocksdict.ChecksumType": {"fullname": "rocksdict.ChecksumType", "modulename": "rocksdict", "qualname": "ChecksumType", "type": "class", "doc": "Used by BlockBasedOptions::set_checksum_type.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n"}, "rocksdict.ChecksumType.__init__": {"fullname": "rocksdict.ChecksumType.__init__", "modulename": "rocksdict", "qualname": "ChecksumType.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.ChecksumType.no_checksum": {"fullname": "rocksdict.ChecksumType.no_checksum", "modulename": "rocksdict", "qualname": "ChecksumType.no_checksum", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.ChecksumType.crc32c": {"fullname": "rocksdict.ChecksumType.crc32c", "modulename": "rocksdict", "qualname": "ChecksumType.crc32c", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.ChecksumType.xxhash": {"fullname": "rocksdict.ChecksumType.xxhash", "modulename": "rocksdict", "qualname": "ChecksumType.xxhash", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.ChecksumType.xxhash64": {"fullname": "rocksdict.ChecksumType.xxhash64", "modulename": "rocksdict", "qualname": "ChecksumType.xxhash64", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.ChecksumType.xxh3": {"fullname": "rocksdict.ChecksumType.xxh3", "modulename": "rocksdict", "qualname": "ChecksumType.xxh3", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompactionStyle": {"fullname": "rocksdict.DBCompactionStyle", "modulename": "rocksdict", "qualname": "DBCompactionStyle", "type": "class", "doc": "- NoChecksum
\n- CRC32c
\n- XXHash
\n- XXHash64
\n- XXH3
\nThis is to be treated as an enum.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- Level
\n- Universal
\n- Fifo
\nBelow is an example to set compaction style to Fifo.
\n\nExample
\n\n\n\n"}, "rocksdict.DBCompactionStyle.__init__": {"fullname": "rocksdict.DBCompactionStyle.__init__", "modulename": "rocksdict", "qualname": "DBCompactionStyle.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.DBCompactionStyle.level": {"fullname": "rocksdict.DBCompactionStyle.level", "modulename": "rocksdict", "qualname": "DBCompactionStyle.level", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompactionStyle.universal": {"fullname": "rocksdict.DBCompactionStyle.universal", "modulename": "rocksdict", "qualname": "DBCompactionStyle.universal", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompactionStyle.fifo": {"fullname": "rocksdict.DBCompactionStyle.fifo", "modulename": "rocksdict", "qualname": "DBCompactionStyle.fifo", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType": {"fullname": "rocksdict.DBCompressionType", "modulename": "rocksdict", "qualname": "DBCompressionType", "type": "class", "doc": "::
\n\n\nopt = Options()\nopt.set_compaction_style(DBCompactionStyle.fifo())\n
This is to be treated as an enum.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- None
\n- Snappy
\n- Zlib
\n- Bz2
\n- Lz4
\n- Lz4hc
\n- Zstd
\nBelow is an example to set compression type to Snappy.
\n\nExample
\n\n\n\n"}, "rocksdict.DBCompressionType.__init__": {"fullname": "rocksdict.DBCompressionType.__init__", "modulename": "rocksdict", "qualname": "DBCompressionType.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.DBCompressionType.none": {"fullname": "rocksdict.DBCompressionType.none", "modulename": "rocksdict", "qualname": "DBCompressionType.none", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.snappy": {"fullname": "rocksdict.DBCompressionType.snappy", "modulename": "rocksdict", "qualname": "DBCompressionType.snappy", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.zlib": {"fullname": "rocksdict.DBCompressionType.zlib", "modulename": "rocksdict", "qualname": "DBCompressionType.zlib", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.bz2": {"fullname": "rocksdict.DBCompressionType.bz2", "modulename": "rocksdict", "qualname": "DBCompressionType.bz2", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.lz4": {"fullname": "rocksdict.DBCompressionType.lz4", "modulename": "rocksdict", "qualname": "DBCompressionType.lz4", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.lz4hc": {"fullname": "rocksdict.DBCompressionType.lz4hc", "modulename": "rocksdict", "qualname": "DBCompressionType.lz4hc", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBCompressionType.zstd": {"fullname": "rocksdict.DBCompressionType.zstd", "modulename": "rocksdict", "qualname": "DBCompressionType.zstd", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBRecoveryMode": {"fullname": "rocksdict.DBRecoveryMode", "modulename": "rocksdict", "qualname": "DBRecoveryMode", "type": "class", "doc": "::
\n\n\nopt = Options()\nopt.set_compression_type(DBCompressionType.snappy())\n
This is to be treated as an enum.
\n\nCalling the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- TolerateCorruptedTailRecords
\n- AbsoluteConsistency
\n- PointInTime
\n- SkipAnyCorruptedRecord
\nBelow is an example to set recovery mode to PointInTime.
\n\nExample
\n\n\n\n"}, "rocksdict.DBRecoveryMode.__init__": {"fullname": "rocksdict.DBRecoveryMode.__init__", "modulename": "rocksdict", "qualname": "DBRecoveryMode.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"fullname": "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records", "modulename": "rocksdict", "qualname": "DBRecoveryMode.tolerate_corrupted_tail_records", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBRecoveryMode.absolute_consistency": {"fullname": "rocksdict.DBRecoveryMode.absolute_consistency", "modulename": "rocksdict", "qualname": "DBRecoveryMode.absolute_consistency", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBRecoveryMode.point_in_time": {"fullname": "rocksdict.DBRecoveryMode.point_in_time", "modulename": "rocksdict", "qualname": "DBRecoveryMode.point_in_time", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"fullname": "rocksdict.DBRecoveryMode.skip_any_corrupted_record", "modulename": "rocksdict", "qualname": "DBRecoveryMode.skip_any_corrupted_record", "type": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "rocksdict.Env": {"fullname": "rocksdict.Env", "modulename": "rocksdict", "qualname": "Env", "type": "class", "doc": "\n"}, "rocksdict.Env.__init__": {"fullname": "rocksdict.Env.__init__", "modulename": "rocksdict", "qualname": "Env.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.Env.mem_env": {"fullname": "rocksdict.Env.mem_env", "modulename": "rocksdict", "qualname": "Env.mem_env", "type": "function", "doc": "::
\n\n\nopt = Options()\nopt.set_wal_recovery_mode(DBRecoveryMode.point_in_time())\n
Returns a new environment that stores its data in memory and delegates\nall non-file-storage tasks to base_env.
\n", "signature": "():", "funcdef": "def"}, "rocksdict.Env.set_background_threads": {"fullname": "rocksdict.Env.set_background_threads", "modulename": "rocksdict", "qualname": "Env.set_background_threads", "type": "function", "doc": "Sets the number of background worker threads of a specific thread pool for this environment.\n
\n\nLOW
is the default pool.Default: 1
\n", "signature": "(self, /, num_threads):", "funcdef": "def"}, "rocksdict.Env.set_high_priority_background_threads": {"fullname": "rocksdict.Env.set_high_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_high_priority_background_threads", "type": "function", "doc": "Sets the size of the high priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Env.set_low_priority_background_threads": {"fullname": "rocksdict.Env.set_low_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_low_priority_background_threads", "type": "function", "doc": "Sets the size of the low priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Env.set_bottom_priority_background_threads": {"fullname": "rocksdict.Env.set_bottom_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_bottom_priority_background_threads", "type": "function", "doc": "Sets the size of the bottom priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, "rocksdict.Env.join_all_threads": {"fullname": "rocksdict.Env.join_all_threads", "modulename": "rocksdict", "qualname": "Env.join_all_threads", "type": "function", "doc": "Wait for all threads started by StartThread to terminate.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Env.lower_thread_pool_io_priority": {"fullname": "rocksdict.Env.lower_thread_pool_io_priority", "modulename": "rocksdict", "qualname": "Env.lower_thread_pool_io_priority", "type": "function", "doc": "Lowering IO priority for threads from the specified pool.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"fullname": "rocksdict.Env.lower_high_priority_thread_pool_io_priority", "modulename": "rocksdict", "qualname": "Env.lower_high_priority_thread_pool_io_priority", "type": "function", "doc": "Lowering IO priority for high priority thread pool.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"fullname": "rocksdict.Env.lower_thread_pool_cpu_priority", "modulename": "rocksdict", "qualname": "Env.lower_thread_pool_cpu_priority", "type": "function", "doc": "Lowering CPU priority for threads from the specified pool.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"fullname": "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority", "modulename": "rocksdict", "qualname": "Env.lower_high_priority_thread_pool_cpu_priority", "type": "function", "doc": "Lowering CPU priority for high priority thread pool.
\n", "signature": "(self, /):", "funcdef": "def"}, "rocksdict.FifoCompactOptions": {"fullname": "rocksdict.FifoCompactOptions", "modulename": "rocksdict", "qualname": "FifoCompactOptions", "type": "class", "doc": "\n"}, "rocksdict.FifoCompactOptions.__init__": {"fullname": "rocksdict.FifoCompactOptions.__init__", "modulename": "rocksdict", "qualname": "FifoCompactOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.FifoCompactOptions.max_table_files_size": {"fullname": "rocksdict.FifoCompactOptions.max_table_files_size", "modulename": "rocksdict", "qualname": "FifoCompactOptions.max_table_files_size", "type": "variable", "doc": "Sets the max table file size.
\n\nOnce the total sum of table files reaches this, we will delete the oldest\ntable file
\n\nDefault: 1GB
\n"}, "rocksdict.CompactOptions": {"fullname": "rocksdict.CompactOptions", "modulename": "rocksdict", "qualname": "CompactOptions", "type": "class", "doc": "\n"}, "rocksdict.CompactOptions.__init__": {"fullname": "rocksdict.CompactOptions.__init__", "modulename": "rocksdict", "qualname": "CompactOptions.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"fullname": "rocksdict.CompactOptions.set_exclusive_manual_compaction", "modulename": "rocksdict", "qualname": "CompactOptions.set_exclusive_manual_compaction", "type": "function", "doc": "If more than one thread calls manual compaction,\nonly one will actually schedule it while the other threads will simply wait\nfor the scheduled manual compaction to complete. If exclusive_manual_compaction\nis set to true, the call will disable scheduling of automatic compaction jobs\nand wait for existing automatic compaction jobs to finish.
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"fullname": "rocksdict.CompactOptions.set_bottommost_level_compaction", "modulename": "rocksdict", "qualname": "CompactOptions.set_bottommost_level_compaction", "type": "function", "doc": "Sets bottommost level compaction.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, "rocksdict.CompactOptions.set_change_level": {"fullname": "rocksdict.CompactOptions.set_change_level", "modulename": "rocksdict", "qualname": "CompactOptions.set_change_level", "type": "function", "doc": "If true, compacted files will be moved to the minimum level capable\nof holding the data or given level (specified non-negative target_level).
\n", "signature": "(self, /, v):", "funcdef": "def"}, "rocksdict.CompactOptions.set_target_level": {"fullname": "rocksdict.CompactOptions.set_target_level", "modulename": "rocksdict", "qualname": "CompactOptions.set_target_level", "type": "function", "doc": "If change_level is true and target_level have non-negative value, compacted\nfiles will be moved to target_level.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, "rocksdict.BottommostLevelCompaction": {"fullname": "rocksdict.BottommostLevelCompaction", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction", "type": "class", "doc": "\n"}, "rocksdict.BottommostLevelCompaction.__init__": {"fullname": "rocksdict.BottommostLevelCompaction.__init__", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.__init__", "type": "function", "doc": "\n", "signature": "()"}, "rocksdict.BottommostLevelCompaction.skip": {"fullname": "rocksdict.BottommostLevelCompaction.skip", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.skip", "type": "function", "doc": "Skip bottommost level compaction
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"fullname": "rocksdict.BottommostLevelCompaction.if_have_compaction_filter", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.if_have_compaction_filter", "type": "function", "doc": "Only compact bottommost level if there is a compaction filter\nThis is the default option
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BottommostLevelCompaction.force": {"fullname": "rocksdict.BottommostLevelCompaction.force", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.force", "type": "function", "doc": "Always compact bottommost level
\n", "signature": "():", "funcdef": "def"}, "rocksdict.BottommostLevelCompaction.force_optimized": {"fullname": "rocksdict.BottommostLevelCompaction.force_optimized", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.force_optimized", "type": "function", "doc": "Always compact bottommost level but in bottommost level avoid\ndouble-compacting files created in the same compaction
\n", "signature": "():", "funcdef": "def"}}, "docInfo": {"rocksdict": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 431}, "rocksdict.Rdict": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 140}, "rocksdict.Rdict.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.Rdict.set_dumps": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 6}, "rocksdict.Rdict.set_loads": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 6}, "rocksdict.Rdict.set_write_options": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 90}, "rocksdict.Rdict.set_read_options": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 11}, "rocksdict.Rdict.get": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 86}, "rocksdict.Rdict.put": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 56}, "rocksdict.Rdict.key_may_exist": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 259}, "rocksdict.Rdict.delete": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 48}, "rocksdict.Rdict.iter": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 148}, "rocksdict.Rdict.items": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 90}, "rocksdict.Rdict.keys": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 83}, "rocksdict.Rdict.values": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 94}, "rocksdict.Rdict.flush": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 74}, "rocksdict.Rdict.flush_wal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 23}, "rocksdict.Rdict.create_column_family": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 53}, "rocksdict.Rdict.drop_column_family": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.Rdict.get_column_family": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 51}, "rocksdict.Rdict.get_column_family_handle": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 82}, "rocksdict.Rdict.snapshot": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 102}, "rocksdict.Rdict.ingest_external_file": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 41}, "rocksdict.Rdict.try_catch_up_with_primary": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 20}, "rocksdict.Rdict.cancel_all_background": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 16}, "rocksdict.Rdict.write": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 33, "bases": 0, "doc": 57}, "rocksdict.Rdict.delete_range": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 47}, "rocksdict.Rdict.close": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 108}, "rocksdict.Rdict.path": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 7}, "rocksdict.Rdict.compact_range": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 18}, "rocksdict.Rdict.set_options": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.Rdict.property_value": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 14}, "rocksdict.Rdict.property_int_value": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 35}, "rocksdict.Rdict.latest_sequence_number": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "rocksdict.Rdict.live_files": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 17}, "rocksdict.Rdict.destroy": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 35}, "rocksdict.Rdict.repair": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 35}, "rocksdict.Rdict.list_cf": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "rocksdict.WriteBatch": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 60}, "rocksdict.WriteBatch.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.WriteBatch.set_dumps": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 8}, "rocksdict.WriteBatch.set_default_column_family": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 65}, "rocksdict.WriteBatch.len": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 6}, "rocksdict.WriteBatch.size_in_bytes": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 9}, "rocksdict.WriteBatch.is_empty": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 9}, "rocksdict.WriteBatch.put": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 37}, "rocksdict.WriteBatch.delete": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 41}, "rocksdict.WriteBatch.delete_range": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 101}, "rocksdict.WriteBatch.clear": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 10}, "rocksdict.SstFileWriter": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 56}, "rocksdict.SstFileWriter.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.SstFileWriter.set_dumps": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 6}, "rocksdict.SstFileWriter.open": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 13}, "rocksdict.SstFileWriter.finish": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "rocksdict.SstFileWriter.file_size": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 7}, "rocksdict.AccessType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 105}, "rocksdict.AccessType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.AccessType.read_write": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 105}, "rocksdict.AccessType.read_only": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 105}, "rocksdict.AccessType.secondary": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 105}, "rocksdict.AccessType.with_ttl": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 105}, "rocksdict.WriteOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 92}, "rocksdict.WriteOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.WriteOptions.low_pri": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 58}, "rocksdict.WriteOptions.disable_wal": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "rocksdict.WriteOptions.ignore_missing_column_families": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 46}, "rocksdict.WriteOptions.sync": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 54}, "rocksdict.WriteOptions.no_slowdown": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 24}, "rocksdict.Snapshot": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 106}, "rocksdict.Snapshot.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.Snapshot.iter": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 46}, "rocksdict.Snapshot.items": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 73}, "rocksdict.Snapshot.keys": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 70}, "rocksdict.Snapshot.values": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 70}, "rocksdict.RdictIter": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.RdictIter.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.RdictIter.valid": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 75}, "rocksdict.RdictIter.status": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 51}, "rocksdict.RdictIter.seek_to_first": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 98}, "rocksdict.RdictIter.seek_to_last": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 98}, "rocksdict.RdictIter.seek": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 110}, "rocksdict.RdictIter.seek_for_prev": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 125}, "rocksdict.RdictIter.next": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 8}, "rocksdict.RdictIter.prev": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 8}, "rocksdict.RdictIter.key": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 7}, "rocksdict.RdictIter.value": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 7}, "rocksdict.Options": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 205}, "rocksdict.Options.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.Options.load_latest": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 43, "bases": 0, "doc": 35}, "rocksdict.Options.increase_parallelism": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 59}, "rocksdict.Options.optimize_level_style_compaction": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 133}, "rocksdict.Options.optimize_universal_style_compaction": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 133}, "rocksdict.Options.create_if_missing": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 25}, "rocksdict.Options.create_missing_column_families": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 25}, "rocksdict.Options.set_error_if_exists": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 19}, "rocksdict.Options.set_paranoid_checks": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 94}, "rocksdict.Options.set_db_paths": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 288}, "rocksdict.Options.set_env": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 44}, "rocksdict.Options.set_compression_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 58}, "rocksdict.Options.set_compression_per_level": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 107}, "rocksdict.Options.set_compression_options": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 136}, "rocksdict.Options.set_zstd_max_train_bytes": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 57}, "rocksdict.Options.set_compaction_readahead_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 64}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 45}, "rocksdict.Options.set_prefix_extractor": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "rocksdict.Options.optimize_for_point_lookup": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 3}, "rocksdict.Options.set_optimize_filters_for_hits": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 15}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 41}, "rocksdict.Options.prepare_for_bulk_load": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 45}, "rocksdict.Options.set_max_open_files": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 84}, "rocksdict.Options.set_max_file_opening_threads": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "rocksdict.Options.set_use_fsync": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 54}, "rocksdict.Options.set_db_log_dir": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 63}, "rocksdict.Options.set_bytes_per_sync": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 98}, "rocksdict.Options.set_wal_bytes_per_sync": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 27}, "rocksdict.Options.set_writable_file_max_buffer_size": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 81}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 65}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 49}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 47}, "rocksdict.Options.set_use_direct_reads": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 69}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"qualname": 9, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 70}, "rocksdict.Options.set_is_fd_close_on_exec": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 13}, "rocksdict.Options.set_table_cache_num_shard_bits": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 18}, "rocksdict.Options.set_target_file_size_multiplier": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 30}, "rocksdict.Options.set_min_write_buffer_number": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 84}, "rocksdict.Options.set_max_write_buffer_number": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 77}, "rocksdict.Options.set_write_buffer_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 126}, "rocksdict.Options.set_db_write_buffer_size": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 60}, "rocksdict.Options.set_max_bytes_for_level_base": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 110}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 6}, "rocksdict.Options.set_max_manifest_file_size": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "rocksdict.Options.set_target_file_size_base": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 101}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 84}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 47}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 56}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 30}, "rocksdict.Options.set_compaction_style": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 13}, "rocksdict.Options.set_universal_compaction_options": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 12}, "rocksdict.Options.set_fifo_compaction_options": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.Options.set_unordered_write": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 227}, "rocksdict.Options.set_max_subcompactions": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 35}, "rocksdict.Options.set_max_background_jobs": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 25}, "rocksdict.Options.set_disable_auto_compactions": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 28}, "rocksdict.Options.set_memtable_huge_page_size": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 77}, "rocksdict.Options.set_max_successive_merges": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 79}, "rocksdict.Options.set_bloom_locality": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 89}, "rocksdict.Options.set_inplace_update_support": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 53}, "rocksdict.Options.set_inplace_update_locks": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 24}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 39}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"qualname": 10, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 69}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 287}, "rocksdict.Options.set_enable_pipelined_write": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 119}, "rocksdict.Options.set_memtable_factory": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 70}, "rocksdict.Options.set_block_based_table_factory": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "rocksdict.Options.set_cuckoo_table_factory": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 112}, "rocksdict.Options.set_plain_table_factory": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 100}, "rocksdict.Options.set_min_level_to_compress": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.Options.set_report_bg_io_stats": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 20}, "rocksdict.Options.set_max_total_wal_size": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 46}, "rocksdict.Options.set_wal_recovery_mode": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 16}, "rocksdict.Options.enable_statistics": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "rocksdict.Options.get_statistics": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "rocksdict.Options.set_stats_dump_period_sec": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 29}, "rocksdict.Options.set_stats_persist_period_sec": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 29}, "rocksdict.Options.set_advise_random_on_open": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "rocksdict.Options.set_use_adaptive_mutex": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 48}, "rocksdict.Options.set_num_levels": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 11}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 51}, "rocksdict.Options.set_max_compaction_bytes": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 51}, "rocksdict.Options.set_wal_dir": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 27}, "rocksdict.Options.set_wal_ttl_seconds": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 173}, "rocksdict.Options.set_wal_size_limit_mb": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 43}, "rocksdict.Options.set_manifest_preallocation_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 47}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 40}, "rocksdict.Options.set_keep_log_file_num": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 18}, "rocksdict.Options.set_allow_mmap_writes": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 15}, "rocksdict.Options.set_allow_mmap_reads": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 17}, "rocksdict.Options.set_atomic_flush": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 62}, "rocksdict.Options.set_row_cache": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 29}, "rocksdict.Options.set_ratelimiter": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 36}, "rocksdict.Options.set_max_log_file_size": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 88}, "rocksdict.Options.set_log_file_time_to_roll": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 46}, "rocksdict.Options.set_recycle_log_file_num": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 102}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 34}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 27}, "rocksdict.Options.set_arena_block_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 35}, "rocksdict.Options.set_dump_malloc_stats": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 21}, "rocksdict.Options.set_memtable_whole_key_filtering": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 51}, "rocksdict.ReadOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "rocksdict.ReadOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.ReadOptions.fill_cache": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 39}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 10}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 62}, "rocksdict.ReadOptions.set_total_order_seek": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 65}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 47}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 31}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 37}, "rocksdict.ReadOptions.set_verify_checksums": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 21}, "rocksdict.ReadOptions.set_readahead_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 57}, "rocksdict.ReadOptions.set_tailing": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 30}, "rocksdict.ReadOptions.set_pin_data": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 59}, "rocksdict.ReadOptions.set_async_io": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 24}, "rocksdict.ColumnFamily": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "rocksdict.ColumnFamily.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.IngestExternalFileOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.IngestExternalFileOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.IngestExternalFileOptions.set_move_files": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 16}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 24}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 24}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 24}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 80}, "rocksdict.DBPath": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.DBPath.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.MemtableFactory": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "rocksdict.MemtableFactory.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.MemtableFactory.vector": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.MemtableFactory.hash_skip_list": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 23, "bases": 0, "doc": 3}, "rocksdict.MemtableFactory.hash_link_list": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 3}, "rocksdict.BlockBasedOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "rocksdict.BlockBasedOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.BlockBasedOptions.set_block_size": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 44}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 78}, "rocksdict.BlockBasedOptions.set_partition_filters": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 33}, "rocksdict.BlockBasedOptions.set_block_cache": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 58}, "rocksdict.BlockBasedOptions.disable_cache": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 5}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 10}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"qualname": 7, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "rocksdict.BlockBasedOptions.set_index_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 56}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"qualname": 10, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 57}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 72}, "rocksdict.BlockBasedOptions.set_format_version": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 26}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 47}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 62}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 135}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 61}, "rocksdict.BlockBasedOptions.set_checksum_type": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 33}, "rocksdict.PlainTableFactoryOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 45}, "rocksdict.PlainTableFactoryOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.CuckooTableOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "rocksdict.CuckooTableOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 21}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 49}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 41}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 44}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 60}, "rocksdict.UniversalCompactOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.UniversalCompactOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.UniversalCompactOptions.min_merge_width": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "rocksdict.UniversalCompactOptions.size_ratio": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 113}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 159}, "rocksdict.UniversalCompactOptions.stop_style": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "rocksdict.UniversalCompactOptions.max_merge_width": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "rocksdict.UniversalCompactionStopStyle": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.UniversalCompactionStopStyle.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.UniversalCompactionStopStyle.similar": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.UniversalCompactionStopStyle.total": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.SliceTransform": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.SliceTransform.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.SliceTransform.create_fixed_prefix": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 3}, "rocksdict.SliceTransform.create_max_len_prefix": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 45}, "rocksdict.SliceTransform.create_noop": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DataBlockIndexType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.DataBlockIndexType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.DataBlockIndexType.binary_search": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 19}, "rocksdict.DataBlockIndexType.binary_and_hash": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 40}, "rocksdict.BlockBasedIndexType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.BlockBasedIndexType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.BlockBasedIndexType.binary_search": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 16}, "rocksdict.BlockBasedIndexType.hash_search": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 24}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 14}, "rocksdict.Cache": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.Cache.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.Cache.new_hyper_clock_cache": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 171}, "rocksdict.Cache.get_usage": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 7}, "rocksdict.Cache.get_pinned_usage": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 6}, "rocksdict.Cache.set_capacity": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 5}, "rocksdict.ChecksumType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "rocksdict.ChecksumType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.ChecksumType.no_checksum": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.ChecksumType.crc32c": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.ChecksumType.xxhash": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.ChecksumType.xxhash64": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.ChecksumType.xxh3": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompactionStyle": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 75}, "rocksdict.DBCompactionStyle.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.DBCompactionStyle.level": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompactionStyle.universal": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompactionStyle.fifo": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 87}, "rocksdict.DBCompressionType.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.none": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.snappy": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.zlib": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.bz2": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.lz4": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.lz4hc": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBCompressionType.zstd": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBRecoveryMode": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 81}, "rocksdict.DBRecoveryMode.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBRecoveryMode.absolute_consistency": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBRecoveryMode.point_in_time": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "rocksdict.Env": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.Env.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.Env.mem_env": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 23}, "rocksdict.Env.set_background_threads": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 29}, "rocksdict.Env.set_high_priority_background_threads": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 23}, "rocksdict.Env.set_low_priority_background_threads": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 23}, "rocksdict.Env.set_bottom_priority_background_threads": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 23}, "rocksdict.Env.join_all_threads": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 12}, "rocksdict.Env.lower_thread_pool_io_priority": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 12}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"qualname": 6, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 12}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"qualname": 8, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 11}, "rocksdict.FifoCompactOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.FifoCompactOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.FifoCompactOptions.max_table_files_size": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "rocksdict.CompactOptions": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.CompactOptions.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 57}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 7}, "rocksdict.CompactOptions.set_change_level": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 27}, "rocksdict.CompactOptions.set_target_level": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 23}, "rocksdict.BottommostLevelCompaction": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "rocksdict.BottommostLevelCompaction.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "rocksdict.BottommostLevelCompaction.skip": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 6}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 17}, "rocksdict.BottommostLevelCompaction.force": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 6}, "rocksdict.BottommostLevelCompaction.force_optimized": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 19}}, "length": 333, "save": true}, "index": {"qualname": {"root": {"docs": {"rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}}, "df": 30, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}}, "df": 37, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}}, "df": 12}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 15}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.repair": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}}, "df": 30}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.IngestExternalFileOptions": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 7}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 3}, "o": {"docs": {"rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 144}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.AccessType.secondary": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}}, "df": 8}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.DBCompressionType.snappy": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 24, "s": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.SliceTransform": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}}, "df": 1}}, "s": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.destroy": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.drop_column_family": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.DBPath": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.level": {"tf": 1}, "rocksdict.DBCompactionStyle.universal": {"tf": 1}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1}}, "df": 5}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBCompressionType.none": {"tf": 1}, "rocksdict.DBCompressionType.snappy": {"tf": 1}, "rocksdict.DBCompressionType.zlib": {"tf": 1}, "rocksdict.DBCompressionType.bz2": {"tf": 1}, "rocksdict.DBCompressionType.lz4": {"tf": 1}, "rocksdict.DBCompressionType.lz4hc": {"tf": 1}, "rocksdict.DBCompressionType.zstd": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DataBlockIndexType": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "l": {"0": {"docs": {"rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_loads": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.optimize_for_point_lookup": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 5}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek_to_last": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}, "rocksdict.DBCompactionStyle.level": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 16, "s": {"docs": {"rocksdict.Options.set_num_levels": {"tf": 1}}, "df": 1}}}}}, "z": {"4": {"docs": {"rocksdict.DBCompressionType.lz4": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.DBCompressionType.lz4hc": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 13, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}}, "df": 11}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}}, "df": 8}}}}}}}, "s": {"docs": {"rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 105}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 4, "d": {"docs": {"rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 6}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.put": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1.4142135623730951}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}}, "df": 2}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 5}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.path": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_keep_log_file_num": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}, "x": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 23}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Env.mem_env": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 6, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.MemtableFactory.vector": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch.is_empty": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Env": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 13}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}}, "df": 3}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.MemtableFactory.vector": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 13, "s": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {"rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.SstFileWriter.finish": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.FifoCompactOptions": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 8, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 6}}}}, "c": {"3": {"2": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.ChecksumType.crc32c": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 7, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 15, "s": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.CompactOptions": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_min_level_to_compress": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 4}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.Cache": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 13}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.clear": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {"rocksdict.Rdict.list_cf": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ChecksumType": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}, "rocksdict.ChecksumType.crc32c": {"tf": 1}, "rocksdict.ChecksumType.xxhash": {"tf": 1}, "rocksdict.ChecksumType.xxhash64": {"tf": 1}, "rocksdict.ChecksumType.xxh3": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 8}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 2}}, "o": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1}}, "df": 3}}}, "p": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 6}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 5}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle.universal": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.UniversalCompactOptions": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 8}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactionStopStyle": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 5}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 5}, "y": {"docs": {"rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 7}}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.Options.set_block_based_table_factory": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 11}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 18}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedIndexType": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {"rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BottommostLevelCompaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}}}, "z": {"2": {"docs": {"rocksdict.DBCompressionType.bz2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompressionType.none": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.next": {"tf": 1}}, "df": 1}}, "w": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.DBCompressionType.zstd": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.DBCompressionType.zlib": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_background_jobs": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"3": {"docs": {"rocksdict.ChecksumType.xxh3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"6": {"4": {"docs": {"rocksdict.ChecksumType.xxhash64": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict.ChecksumType.xxhash": {"tf": 1}}, "df": 1}}}}}}}}, "fullname": {"root": {"docs": {"rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}}, "df": 30, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.DBPath": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.MemtableFactory.vector": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1}, "rocksdict.SliceTransform": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_noop": {"tf": 1}, "rocksdict.DataBlockIndexType": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}, "rocksdict.Cache": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}, "rocksdict.ChecksumType.crc32c": {"tf": 1}, "rocksdict.ChecksumType.xxhash": {"tf": 1}, "rocksdict.ChecksumType.xxhash64": {"tf": 1}, "rocksdict.ChecksumType.xxh3": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.level": {"tf": 1}, "rocksdict.DBCompactionStyle.universal": {"tf": 1}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBCompressionType.none": {"tf": 1}, "rocksdict.DBCompressionType.snappy": {"tf": 1}, "rocksdict.DBCompressionType.zlib": {"tf": 1}, "rocksdict.DBCompressionType.bz2": {"tf": 1}, "rocksdict.DBCompressionType.lz4": {"tf": 1}, "rocksdict.DBCompressionType.lz4hc": {"tf": 1}, "rocksdict.DBCompressionType.zstd": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}, "rocksdict.Env": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.FifoCompactOptions": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.CompactOptions": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}, "rocksdict.BottommostLevelCompaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 333}}}}}}}, "w": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}}, "df": 37, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}}, "df": 12}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 15}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.repair": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.__init__": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.RdictIter.__init__": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.ReadOptions.__init__": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}}, "df": 30}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.IngestExternalFileOptions": {"tf": 1}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 7}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 3}, "o": {"docs": {"rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}}, "df": 5}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 144}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.AccessType.secondary": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Snapshot.__init__": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}}, "df": 8}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.DBCompressionType.snappy": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 24, "s": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.SstFileWriter.__init__": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}}, "df": 6}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.SliceTransform": {"tf": 1}, "rocksdict.SliceTransform.__init__": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}}, "df": 1}}, "s": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 2}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}}, "df": 6, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.destroy": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.drop_column_family": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.DBPath": {"tf": 1}, "rocksdict.DBPath.__init__": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1}, "rocksdict.DBCompactionStyle.level": {"tf": 1}, "rocksdict.DBCompactionStyle.universal": {"tf": 1}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1}}, "df": 5}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBCompressionType.__init__": {"tf": 1}, "rocksdict.DBCompressionType.none": {"tf": 1}, "rocksdict.DBCompressionType.snappy": {"tf": 1}, "rocksdict.DBCompressionType.zlib": {"tf": 1}, "rocksdict.DBCompressionType.bz2": {"tf": 1}, "rocksdict.DBCompressionType.lz4": {"tf": 1}, "rocksdict.DBCompressionType.lz4hc": {"tf": 1}, "rocksdict.DBCompressionType.zstd": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DataBlockIndexType": {"tf": 1}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}, "l": {"0": {"docs": {"rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_loads": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.optimize_for_point_lookup": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 5}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek_to_last": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}, "rocksdict.DBCompactionStyle.level": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 16, "s": {"docs": {"rocksdict.Options.set_num_levels": {"tf": 1}}, "df": 1}}}}}, "z": {"4": {"docs": {"rocksdict.DBCompressionType.lz4": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.DBCompressionType.lz4hc": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 13, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.__init__": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}}, "df": 11}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.__init__": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}}, "df": 8}}}}}}}, "s": {"docs": {"rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.__init__": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 105}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 4, "d": {"docs": {"rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 6}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.put": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1.4142135623730951}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}}, "df": 2}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 5}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.path": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_keep_log_file_num": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}, "x": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 23}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Env.mem_env": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 6, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.MemtableFactory.__init__": {"tf": 1}, "rocksdict.MemtableFactory.vector": {"tf": 1}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 1}}}, "b": {"docs": {"rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch.is_empty": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Env": {"tf": 1}, "rocksdict.Env.__init__": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 13}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}}, "df": 3}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.MemtableFactory.vector": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 13, "s": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {"rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.SstFileWriter.finish": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.FifoCompactOptions": {"tf": 1}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 8, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 6}}}}, "c": {"3": {"2": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.ChecksumType.crc32c": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 7, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.ColumnFamily.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 15, "s": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.CompactOptions": {"tf": 1}, "rocksdict.CompactOptions.__init__": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 6}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_min_level_to_compress": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 4}}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.Cache": {"tf": 1}, "rocksdict.Cache.__init__": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 13}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.clear": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {"rocksdict.Rdict.list_cf": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ChecksumType": {"tf": 1}, "rocksdict.ChecksumType.__init__": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}, "rocksdict.ChecksumType.crc32c": {"tf": 1}, "rocksdict.ChecksumType.xxhash": {"tf": 1}, "rocksdict.ChecksumType.xxhash64": {"tf": 1}, "rocksdict.ChecksumType.xxh3": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 8}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 2}}, "o": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1}}, "df": 3}}}, "p": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 4}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 6}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 5}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle.universal": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.UniversalCompactOptions": {"tf": 1}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 8}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactionStopStyle": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 5}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.__init__": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 5}, "y": {"docs": {"rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 7}}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.Options.set_block_based_table_factory": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 11}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 7}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}}, "df": 3}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 18}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedIndexType": {"tf": 1}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "s": {"docs": {"rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BottommostLevelCompaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}}}, "z": {"2": {"docs": {"rocksdict.DBCompressionType.bz2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 5, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.ChecksumType.no_checksum": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.SliceTransform.create_noop": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBCompressionType.none": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.next": {"tf": 1}}, "df": 1}}, "w": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.DBCompressionType.zstd": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.DBCompressionType.zlib": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_background_jobs": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"3": {"docs": {"rocksdict.ChecksumType.xxh3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"6": {"4": {"docs": {"rocksdict.ChecksumType.xxhash64": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict.ChecksumType.xxhash": {"tf": 1}}, "df": 1}}}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"docs": {"rocksdict.Rdict.__init__": {"tf": 2}, "rocksdict.Rdict.set_dumps": {"tf": 4.358898943540674}, "rocksdict.Rdict.set_loads": {"tf": 4.358898943540674}, "rocksdict.Rdict.set_write_options": {"tf": 4.358898943540674}, "rocksdict.Rdict.set_read_options": {"tf": 4.358898943540674}, "rocksdict.Rdict.get": {"tf": 5.916079783099616}, "rocksdict.Rdict.put": {"tf": 5.5677643628300215}, "rocksdict.Rdict.key_may_exist": {"tf": 5.916079783099616}, "rocksdict.Rdict.delete": {"tf": 5.196152422706632}, "rocksdict.Rdict.iter": {"tf": 4.795831523312719}, "rocksdict.Rdict.items": {"tf": 6.244997998398398}, "rocksdict.Rdict.keys": {"tf": 6.244997998398398}, "rocksdict.Rdict.values": {"tf": 6.244997998398398}, "rocksdict.Rdict.flush": {"tf": 4.795831523312719}, "rocksdict.Rdict.flush_wal": {"tf": 4.795831523312719}, "rocksdict.Rdict.create_column_family": {"tf": 5.196152422706632}, "rocksdict.Rdict.drop_column_family": {"tf": 4.358898943540674}, "rocksdict.Rdict.get_column_family": {"tf": 4.358898943540674}, "rocksdict.Rdict.get_column_family_handle": {"tf": 4.358898943540674}, "rocksdict.Rdict.snapshot": {"tf": 3.872983346207417}, "rocksdict.Rdict.ingest_external_file": {"tf": 5.196152422706632}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 3.872983346207417}, "rocksdict.Rdict.cancel_all_background": {"tf": 4.358898943540674}, "rocksdict.Rdict.write": {"tf": 5.196152422706632}, "rocksdict.Rdict.delete_range": {"tf": 5.5677643628300215}, "rocksdict.Rdict.close": {"tf": 3.872983346207417}, "rocksdict.Rdict.path": {"tf": 3.872983346207417}, "rocksdict.Rdict.compact_range": {"tf": 5.5677643628300215}, "rocksdict.Rdict.set_options": {"tf": 4.358898943540674}, "rocksdict.Rdict.property_value": {"tf": 4.358898943540674}, "rocksdict.Rdict.property_int_value": {"tf": 4.358898943540674}, "rocksdict.Rdict.latest_sequence_number": {"tf": 3.872983346207417}, "rocksdict.Rdict.live_files": {"tf": 3.872983346207417}, "rocksdict.Rdict.destroy": {"tf": 4.242640687119285}, "rocksdict.Rdict.repair": {"tf": 4.242640687119285}, "rocksdict.Rdict.list_cf": {"tf": 4.242640687119285}, "rocksdict.WriteBatch.__init__": {"tf": 2}, "rocksdict.WriteBatch.set_dumps": {"tf": 4.358898943540674}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 4.795831523312719}, "rocksdict.WriteBatch.len": {"tf": 3.872983346207417}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 3.872983346207417}, "rocksdict.WriteBatch.is_empty": {"tf": 3.872983346207417}, "rocksdict.WriteBatch.put": {"tf": 5.5677643628300215}, "rocksdict.WriteBatch.delete": {"tf": 5.196152422706632}, "rocksdict.WriteBatch.delete_range": {"tf": 5.5677643628300215}, "rocksdict.WriteBatch.clear": {"tf": 3.872983346207417}, "rocksdict.SstFileWriter.__init__": {"tf": 2}, "rocksdict.SstFileWriter.set_dumps": {"tf": 4.358898943540674}, "rocksdict.SstFileWriter.open": {"tf": 4.358898943540674}, "rocksdict.SstFileWriter.finish": {"tf": 3.872983346207417}, "rocksdict.SstFileWriter.file_size": {"tf": 3.872983346207417}, "rocksdict.AccessType.__init__": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2.6457513110645907}, "rocksdict.AccessType.read_only": {"tf": 3.7416573867739413}, "rocksdict.AccessType.secondary": {"tf": 3.1622776601683795}, "rocksdict.AccessType.with_ttl": {"tf": 3.1622776601683795}, "rocksdict.WriteOptions.__init__": {"tf": 2}, "rocksdict.Snapshot.__init__": {"tf": 2}, "rocksdict.Snapshot.iter": {"tf": 4.795831523312719}, "rocksdict.Snapshot.items": {"tf": 6.244997998398398}, "rocksdict.Snapshot.keys": {"tf": 6.244997998398398}, "rocksdict.Snapshot.values": {"tf": 6.244997998398398}, "rocksdict.RdictIter.__init__": {"tf": 2}, "rocksdict.RdictIter.valid": {"tf": 3.872983346207417}, "rocksdict.RdictIter.status": {"tf": 3.872983346207417}, "rocksdict.RdictIter.seek_to_first": {"tf": 3.872983346207417}, "rocksdict.RdictIter.seek_to_last": {"tf": 3.872983346207417}, "rocksdict.RdictIter.seek": {"tf": 4.358898943540674}, "rocksdict.RdictIter.seek_for_prev": {"tf": 4.358898943540674}, "rocksdict.RdictIter.next": {"tf": 3.872983346207417}, "rocksdict.RdictIter.prev": {"tf": 3.872983346207417}, "rocksdict.RdictIter.key": {"tf": 3.872983346207417}, "rocksdict.RdictIter.value": {"tf": 3.872983346207417}, "rocksdict.Options.__init__": {"tf": 2}, "rocksdict.Options.load_latest": {"tf": 5.830951894845301}, "rocksdict.Options.increase_parallelism": {"tf": 4.358898943540674}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 4.358898943540674}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 4.358898943540674}, "rocksdict.Options.create_if_missing": {"tf": 4.358898943540674}, "rocksdict.Options.create_missing_column_families": {"tf": 4.358898943540674}, "rocksdict.Options.set_error_if_exists": {"tf": 4.358898943540674}, "rocksdict.Options.set_paranoid_checks": {"tf": 4.358898943540674}, "rocksdict.Options.set_db_paths": {"tf": 4.358898943540674}, "rocksdict.Options.set_env": {"tf": 4.358898943540674}, "rocksdict.Options.set_compression_type": {"tf": 4.358898943540674}, "rocksdict.Options.set_compression_per_level": {"tf": 4.358898943540674}, "rocksdict.Options.set_compression_options": {"tf": 5.5677643628300215}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 4.358898943540674}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 4.358898943540674}, "rocksdict.Options.set_prefix_extractor": {"tf": 4.358898943540674}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 4.358898943540674}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 4.358898943540674}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 4.358898943540674}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 3.872983346207417}, "rocksdict.Options.set_max_open_files": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 4.358898943540674}, "rocksdict.Options.set_use_fsync": {"tf": 4.358898943540674}, "rocksdict.Options.set_db_log_dir": {"tf": 4.358898943540674}, "rocksdict.Options.set_bytes_per_sync": {"tf": 4.358898943540674}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 4.358898943540674}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 4.358898943540674}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 4.358898943540674}, "rocksdict.Options.set_use_direct_reads": {"tf": 4.358898943540674}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 4.358898943540674}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 4.358898943540674}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 4.358898943540674}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 4.358898943540674}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 4.358898943540674}, "rocksdict.Options.set_write_buffer_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_target_file_size_base": {"tf": 4.358898943540674}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 4.358898943540674}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 4.358898943540674}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 4.358898943540674}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 4.358898943540674}, "rocksdict.Options.set_compaction_style": {"tf": 4.358898943540674}, "rocksdict.Options.set_universal_compaction_options": {"tf": 4.358898943540674}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 4.358898943540674}, "rocksdict.Options.set_unordered_write": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_subcompactions": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_background_jobs": {"tf": 4.358898943540674}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 4.358898943540674}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_successive_merges": {"tf": 4.358898943540674}, "rocksdict.Options.set_bloom_locality": {"tf": 4.358898943540674}, "rocksdict.Options.set_inplace_update_support": {"tf": 4.358898943540674}, "rocksdict.Options.set_inplace_update_locks": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 4.358898943540674}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 4.358898943540674}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 4.358898943540674}, "rocksdict.Options.set_memtable_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_block_based_table_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_plain_table_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_min_level_to_compress": {"tf": 4.358898943540674}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_total_wal_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 4.358898943540674}, "rocksdict.Options.enable_statistics": {"tf": 3.872983346207417}, "rocksdict.Options.get_statistics": {"tf": 3.872983346207417}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 4.358898943540674}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 4.358898943540674}, "rocksdict.Options.set_advise_random_on_open": {"tf": 4.358898943540674}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 4.358898943540674}, "rocksdict.Options.set_num_levels": {"tf": 4.358898943540674}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 4.358898943540674}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 4.358898943540674}, "rocksdict.Options.set_wal_dir": {"tf": 4.358898943540674}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 4.358898943540674}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 4.358898943540674}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 4.358898943540674}, "rocksdict.Options.set_keep_log_file_num": {"tf": 4.358898943540674}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 4.358898943540674}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 4.358898943540674}, "rocksdict.Options.set_atomic_flush": {"tf": 4.358898943540674}, "rocksdict.Options.set_row_cache": {"tf": 4.358898943540674}, "rocksdict.Options.set_ratelimiter": {"tf": 5.196152422706632}, "rocksdict.Options.set_max_log_file_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 4.358898943540674}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 4.358898943540674}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 4.358898943540674}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 4.358898943540674}, "rocksdict.Options.set_arena_block_size": {"tf": 4.358898943540674}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 4.358898943540674}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.__init__": {"tf": 2}, "rocksdict.ReadOptions.fill_cache": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_tailing": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_pin_data": {"tf": 4.358898943540674}, "rocksdict.ReadOptions.set_async_io": {"tf": 4.358898943540674}, "rocksdict.ColumnFamily.__init__": {"tf": 2}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 2}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 4.358898943540674}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 4.358898943540674}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 4.358898943540674}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 4.358898943540674}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 4.358898943540674}, "rocksdict.DBPath.__init__": {"tf": 2}, "rocksdict.MemtableFactory.__init__": {"tf": 2}, "rocksdict.MemtableFactory.vector": {"tf": 2.6457513110645907}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 4.242640687119285}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 3.1622776601683795}, "rocksdict.BlockBasedOptions.__init__": {"tf": 2}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 3.872983346207417}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 4.795831523312719}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 4.358898943540674}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 4.358898943540674}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 2}, "rocksdict.CuckooTableOptions.__init__": {"tf": 2}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 4.358898943540674}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 4.358898943540674}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 4.358898943540674}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 4.358898943540674}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 4.358898943540674}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 2}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 2}, "rocksdict.UniversalCompactionStopStyle.similar": {"tf": 2.6457513110645907}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 2.6457513110645907}, "rocksdict.SliceTransform.__init__": {"tf": 2}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 3.1622776601683795}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 3.1622776601683795}, "rocksdict.SliceTransform.create_noop": {"tf": 2.6457513110645907}, "rocksdict.DataBlockIndexType.__init__": {"tf": 2}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 2.6457513110645907}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 2.6457513110645907}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 2}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 2.6457513110645907}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 2.6457513110645907}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 2.6457513110645907}, "rocksdict.Cache.__init__": {"tf": 2}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 3.7416573867739413}, "rocksdict.Cache.get_usage": {"tf": 3.872983346207417}, "rocksdict.Cache.get_pinned_usage": {"tf": 3.872983346207417}, "rocksdict.Cache.set_capacity": {"tf": 4.358898943540674}, "rocksdict.ChecksumType.__init__": {"tf": 2}, "rocksdict.ChecksumType.no_checksum": {"tf": 2.6457513110645907}, "rocksdict.ChecksumType.crc32c": {"tf": 2.6457513110645907}, "rocksdict.ChecksumType.xxhash": {"tf": 2.6457513110645907}, "rocksdict.ChecksumType.xxhash64": {"tf": 2.6457513110645907}, "rocksdict.ChecksumType.xxh3": {"tf": 2.6457513110645907}, "rocksdict.DBCompactionStyle.__init__": {"tf": 2}, "rocksdict.DBCompactionStyle.level": {"tf": 2.6457513110645907}, "rocksdict.DBCompactionStyle.universal": {"tf": 2.6457513110645907}, "rocksdict.DBCompactionStyle.fifo": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.__init__": {"tf": 2}, "rocksdict.DBCompressionType.none": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.snappy": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.zlib": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.bz2": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.lz4": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.lz4hc": {"tf": 2.6457513110645907}, "rocksdict.DBCompressionType.zstd": {"tf": 2.6457513110645907}, "rocksdict.DBRecoveryMode.__init__": {"tf": 2}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 2.6457513110645907}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 2.6457513110645907}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 2.6457513110645907}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 2.6457513110645907}, "rocksdict.Env.__init__": {"tf": 2}, "rocksdict.Env.mem_env": {"tf": 2.6457513110645907}, "rocksdict.Env.set_background_threads": {"tf": 4.358898943540674}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 4.358898943540674}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 4.358898943540674}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 4.358898943540674}, "rocksdict.Env.join_all_threads": {"tf": 3.872983346207417}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 3.872983346207417}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 3.872983346207417}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 3.872983346207417}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 3.872983346207417}, "rocksdict.FifoCompactOptions.__init__": {"tf": 2}, "rocksdict.CompactOptions.__init__": {"tf": 2}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 4.358898943540674}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 4.358898943540674}, "rocksdict.CompactOptions.set_change_level": {"tf": 4.358898943540674}, "rocksdict.CompactOptions.set_target_level": {"tf": 4.358898943540674}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 2}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 2.6457513110645907}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 2.6457513110645907}, "rocksdict.BottommostLevelCompaction.force": {"tf": 2.6457513110645907}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 2.6457513110645907}}, "df": 289, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_prefix_extractor": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.enable_statistics": {"tf": 1}, "rocksdict.Options.get_statistics": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 213}}, "c": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.AccessType.secondary": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compaction_style": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 18}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.set_loads": {"tf": 1}}, "df": 1}}}, "g": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 3}}}, "n": {"docs": {"rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1.4142135623730951}, "rocksdict.Rdict.delete_range": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 17, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 7}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 11, "a": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}}, "df": 3}}, "e": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 18}}}, "n": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get": {"tf": 1.4142135623730951}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.keys": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.values": {"tf": 1.4142135623730951}}, "df": 18}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 7}}}, "v": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 22, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.put": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}}, "df": 9}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}}, "df": 1, "y": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_fifo_compaction_options": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 6}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.write": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1.4142135623730951}}, "df": 7}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}}, "df": 3}, "v": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 11}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Rdict.list_cf": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}}, "df": 8, "s": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_prefix_extractor": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 4}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_universal_compaction_options": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.MemtableFactory.hash_skip_list": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_background_jobs": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"0": {"0": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict": {"tf": 2.6457513110645907}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.7320508075688772}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.7320508075688772}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.6457513110645907}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 41, "x": {"1": {"0": {"0": {"0": {"0": {"0": {"0": {"0": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"0": {"0": {"0": {"0": {"0": {"0": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "1": {"0": {"0": {"0": {"0": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 2}, "docs": {"rocksdict.Options.set_keep_log_file_num": {"tf": 1}}, "df": 1}, "docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}}, "df": 5}, "2": {"4": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2.6457513110645907}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}, "7": {"3": {"7": {"4": {"1": {"8": {"2": {"4": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 9, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}}}, "6": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 5}, "9": {"4": {"docs": {"rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict": {"tf": 4}, "rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 23, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 2}}, "/": {"1": {"0": {"docs": {"rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 1}}}, "2": {"0": {"0": {"0": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}, "docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 2}}}, "docs": {"rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 4, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}}, "df": 2}}}, "3": {"4": {"3": {"5": {"4": {"6": {"5": {"4": {"3": {"2": {"4": {"3": {"5": {"6": {"4": {"5": {"3": {"4": {"2": {"3": {"3": {"5": {"3": {"6": {"4": {"3": {"4": {"5": {"6": {"7": {"5": {"4": {"3": {"docs": {"rocksdict": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}}, "df": 6}, "5": {"6": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}}, "docs": {"rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 4}, "docs": {"rocksdict": {"tf": 2.8284271247461903}, "rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 12, "t": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}}, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 3}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}}, "df": 1}}}, "3": {"0": {"0": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}, "4": {"docs": {"rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}, "6": {"0": {"0": {"docs": {"rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"rocksdict": {"tf": 2}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 4}, "4": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 5, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}}, "5": {"0": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}}, "df": 1}, "2": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}, "3": {"6": {"8": {"7": {"0": {"9": {"1": {"2": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 3}, "6": {"0": {"0": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "2": {"5": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "4": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1, "/": {"3": {"2": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}}, "df": 2}}, "b": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}}, "docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 3}, "7": {"5": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "8": {"3": {"8": {"8": {"6": {"0": {"8": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1}, "9": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 2}, "docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 1}}}, "9": {"0": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 2}, "docs": {"rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}}, "df": 1}, "docs": {"rocksdict": {"tf": 10.099504938362077}, "rocksdict.Rdict": {"tf": 7.14142842854285}, "rocksdict.Rdict.__init__": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_dumps": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_loads": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_write_options": {"tf": 4.795831523312719}, "rocksdict.Rdict.set_read_options": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get": {"tf": 5.744562646538029}, "rocksdict.Rdict.put": {"tf": 4.898979485566356}, "rocksdict.Rdict.key_may_exist": {"tf": 8.12403840463596}, "rocksdict.Rdict.delete": {"tf": 4.358898943540674}, "rocksdict.Rdict.iter": {"tf": 6.324555320336759}, "rocksdict.Rdict.items": {"tf": 6.324555320336759}, "rocksdict.Rdict.keys": {"tf": 6.244997998398398}, "rocksdict.Rdict.values": {"tf": 6.557438524302}, "rocksdict.Rdict.flush": {"tf": 4.898979485566356}, "rocksdict.Rdict.flush_wal": {"tf": 2.6457513110645907}, "rocksdict.Rdict.create_column_family": {"tf": 5}, "rocksdict.Rdict.drop_column_family": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family": {"tf": 4.898979485566356}, "rocksdict.Rdict.get_column_family_handle": {"tf": 4.358898943540674}, "rocksdict.Rdict.snapshot": {"tf": 5}, "rocksdict.Rdict.ingest_external_file": {"tf": 4.123105625617661}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1.7320508075688772}, "rocksdict.Rdict.cancel_all_background": {"tf": 1.7320508075688772}, "rocksdict.Rdict.write": {"tf": 5.196152422706632}, "rocksdict.Rdict.delete_range": {"tf": 5}, "rocksdict.Rdict.close": {"tf": 6}, "rocksdict.Rdict.path": {"tf": 1.7320508075688772}, "rocksdict.Rdict.compact_range": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_options": {"tf": 1.7320508075688772}, "rocksdict.Rdict.property_value": {"tf": 1.7320508075688772}, "rocksdict.Rdict.property_int_value": {"tf": 2.8284271247461903}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1.7320508075688772}, "rocksdict.Rdict.live_files": {"tf": 1.4142135623730951}, "rocksdict.Rdict.destroy": {"tf": 4.358898943540674}, "rocksdict.Rdict.repair": {"tf": 4.358898943540674}, "rocksdict.Rdict.list_cf": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch": {"tf": 4.898979485566356}, "rocksdict.WriteBatch.__init__": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.set_dumps": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 5.196152422706632}, "rocksdict.WriteBatch.len": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.is_empty": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.put": {"tf": 3.605551275463989}, "rocksdict.WriteBatch.delete": {"tf": 3.605551275463989}, "rocksdict.WriteBatch.delete_range": {"tf": 5.656854249492381}, "rocksdict.WriteBatch.clear": {"tf": 1.7320508075688772}, "rocksdict.SstFileWriter": {"tf": 4}, "rocksdict.SstFileWriter.__init__": {"tf": 1.7320508075688772}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.open": {"tf": 1.7320508075688772}, "rocksdict.SstFileWriter.finish": {"tf": 1.7320508075688772}, "rocksdict.SstFileWriter.file_size": {"tf": 1.4142135623730951}, "rocksdict.AccessType": {"tf": 6.4031242374328485}, "rocksdict.AccessType.__init__": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_write": {"tf": 6.4031242374328485}, "rocksdict.AccessType.read_only": {"tf": 6.4031242374328485}, "rocksdict.AccessType.secondary": {"tf": 6.4031242374328485}, "rocksdict.AccessType.with_ttl": {"tf": 6.4031242374328485}, "rocksdict.WriteOptions": {"tf": 4.795831523312719}, "rocksdict.WriteOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.WriteOptions.low_pri": {"tf": 2.23606797749979}, "rocksdict.WriteOptions.disable_wal": {"tf": 2.23606797749979}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 2.23606797749979}, "rocksdict.WriteOptions.sync": {"tf": 2.23606797749979}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 2.23606797749979}, "rocksdict.WriteOptions.no_slowdown": {"tf": 2.23606797749979}, "rocksdict.Snapshot": {"tf": 5}, "rocksdict.Snapshot.__init__": {"tf": 1.7320508075688772}, "rocksdict.Snapshot.iter": {"tf": 4}, "rocksdict.Snapshot.items": {"tf": 5.291502622129181}, "rocksdict.Snapshot.keys": {"tf": 5.291502622129181}, "rocksdict.Snapshot.values": {"tf": 5.291502622129181}, "rocksdict.RdictIter": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.__init__": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.valid": {"tf": 4.69041575982343}, "rocksdict.RdictIter.status": {"tf": 3.7416573867739413}, "rocksdict.RdictIter.seek_to_first": {"tf": 4.898979485566356}, "rocksdict.RdictIter.seek_to_last": {"tf": 4.898979485566356}, "rocksdict.RdictIter.seek": {"tf": 4.795831523312719}, "rocksdict.RdictIter.seek_for_prev": {"tf": 5.5677643628300215}, "rocksdict.RdictIter.next": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.prev": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.key": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.value": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 5.916079783099616}, "rocksdict.Options.__init__": {"tf": 1.7320508075688772}, "rocksdict.Options.load_latest": {"tf": 3}, "rocksdict.Options.increase_parallelism": {"tf": 2.6457513110645907}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 5.5677643628300215}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 5.5677643628300215}, "rocksdict.Options.create_if_missing": {"tf": 2.6457513110645907}, "rocksdict.Options.create_missing_column_families": {"tf": 2.6457513110645907}, "rocksdict.Options.set_error_if_exists": {"tf": 2.23606797749979}, "rocksdict.Options.set_paranoid_checks": {"tf": 2.8284271247461903}, "rocksdict.Options.set_db_paths": {"tf": 6.082762530298219}, "rocksdict.Options.set_env": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compression_type": {"tf": 4.898979485566356}, "rocksdict.Options.set_compression_per_level": {"tf": 4.358898943540674}, "rocksdict.Options.set_compression_options": {"tf": 3.872983346207417}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 3.3166247903554}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 3.1622776601683795}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 2.449489742783178}, "rocksdict.Options.set_prefix_extractor": {"tf": 1.7320508075688772}, "rocksdict.Options.optimize_for_point_lookup": {"tf": 1.7320508075688772}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 2.449489742783178}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 2.8284271247461903}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_open_files": {"tf": 3.7416573867739413}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_fsync": {"tf": 2.6457513110645907}, "rocksdict.Options.set_db_log_dir": {"tf": 2.8284271247461903}, "rocksdict.Options.set_bytes_per_sync": {"tf": 3.7416573867739413}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 2.8284271247461903}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 3.4641016151377544}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 2.8284271247461903}, "rocksdict.Options.set_use_direct_reads": {"tf": 2.6457513110645907}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 2.449489742783178}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 2.23606797749979}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 2.6457513110645907}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 2.23606797749979}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 3}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 2.6457513110645907}, "rocksdict.Options.set_write_buffer_size": {"tf": 4}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 3.4641016151377544}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 3.4641016151377544}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 2}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_target_file_size_base": {"tf": 3.4641016151377544}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 3}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 3.3166247903554}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 3.3166247903554}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 3}, "rocksdict.Options.set_compaction_style": {"tf": 2.449489742783178}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_unordered_write": {"tf": 2.8284271247461903}, "rocksdict.Options.set_max_subcompactions": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_background_jobs": {"tf": 2.8284271247461903}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_successive_merges": {"tf": 3}, "rocksdict.Options.set_bloom_locality": {"tf": 2.8284271247461903}, "rocksdict.Options.set_inplace_update_support": {"tf": 4.358898943540674}, "rocksdict.Options.set_inplace_update_locks": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 2.6457513110645907}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 4.123105625617661}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_block_based_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_plain_table_factory": {"tf": 4.358898943540674}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1.7320508075688772}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 3}, "rocksdict.Options.set_max_total_wal_size": {"tf": 2.6457513110645907}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 2.23606797749979}, "rocksdict.Options.enable_statistics": {"tf": 1.7320508075688772}, "rocksdict.Options.get_statistics": {"tf": 1.7320508075688772}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 3.4641016151377544}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 3.1622776601683795}, "rocksdict.Options.set_advise_random_on_open": {"tf": 2.6457513110645907}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 2.8284271247461903}, "rocksdict.Options.set_num_levels": {"tf": 1.7320508075688772}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 3.7416573867739413}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 3}, "rocksdict.Options.set_wal_dir": {"tf": 2.23606797749979}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 5}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 2.8284271247461903}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 2.449489742783178}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 2.23606797749979}, "rocksdict.Options.set_keep_log_file_num": {"tf": 2.23606797749979}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 2.23606797749979}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 2.23606797749979}, "rocksdict.Options.set_atomic_flush": {"tf": 3.3166247903554}, "rocksdict.Options.set_row_cache": {"tf": 2.23606797749979}, "rocksdict.Options.set_ratelimiter": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_log_file_size": {"tf": 5.0990195135927845}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 2.8284271247461903}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 4.69041575982343}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 2.23606797749979}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 2.23606797749979}, "rocksdict.Options.set_arena_block_size": {"tf": 2.8284271247461903}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 2.23606797749979}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 2.8284271247461903}, "rocksdict.ReadOptions": {"tf": 4.123105625617661}, "rocksdict.ReadOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.fill_cache": {"tf": 2.6457513110645907}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 2.449489742783178}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 2.6457513110645907}, "rocksdict.ReadOptions.set_tailing": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_pin_data": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_async_io": {"tf": 3.1622776601683795}, "rocksdict.ColumnFamily": {"tf": 1.7320508075688772}, "rocksdict.ColumnFamily.__init__": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.7320508075688772}, "rocksdict.DBPath": {"tf": 1.7320508075688772}, "rocksdict.DBPath.__init__": {"tf": 1.7320508075688772}, "rocksdict.MemtableFactory": {"tf": 2.23606797749979}, "rocksdict.MemtableFactory.__init__": {"tf": 1.7320508075688772}, "rocksdict.MemtableFactory.vector": {"tf": 1.7320508075688772}, "rocksdict.MemtableFactory.hash_skip_list": {"tf": 1.7320508075688772}, "rocksdict.MemtableFactory.hash_link_list": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 4.123105625617661}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 3.3166247903554}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 3.1622776601683795}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 6.324555320336759}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 2.8284271247461903}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.7320508075688772}, "rocksdict.PlainTableFactoryOptions": {"tf": 3.605551275463989}, "rocksdict.PlainTableFactoryOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 3}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 3.3166247903554}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactionStopStyle": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactionStopStyle.__init__": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactionStopStyle.similar": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactionStopStyle.total": {"tf": 1.7320508075688772}, "rocksdict.SliceTransform": {"tf": 1.7320508075688772}, "rocksdict.SliceTransform.__init__": {"tf": 1.7320508075688772}, "rocksdict.SliceTransform.create_fixed_prefix": {"tf": 1.7320508075688772}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 3.605551275463989}, "rocksdict.SliceTransform.create_noop": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType.__init__": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.__init__": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1.7320508075688772}, "rocksdict.Cache": {"tf": 1.7320508075688772}, "rocksdict.Cache.__init__": {"tf": 1.7320508075688772}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 5.744562646538029}, "rocksdict.Cache.get_usage": {"tf": 1.4142135623730951}, "rocksdict.Cache.get_pinned_usage": {"tf": 1.4142135623730951}, "rocksdict.Cache.set_capacity": {"tf": 1.4142135623730951}, "rocksdict.ChecksumType": {"tf": 4.47213595499958}, "rocksdict.ChecksumType.__init__": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType.no_checksum": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType.crc32c": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType.xxhash": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType.xxhash64": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType.xxh3": {"tf": 1.7320508075688772}, "rocksdict.DBCompactionStyle": {"tf": 5.744562646538029}, "rocksdict.DBCompactionStyle.__init__": {"tf": 1.7320508075688772}, "rocksdict.DBCompactionStyle.level": {"tf": 1.7320508075688772}, "rocksdict.DBCompactionStyle.universal": {"tf": 1.7320508075688772}, "rocksdict.DBCompactionStyle.fifo": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType": {"tf": 6.4031242374328485}, "rocksdict.DBCompressionType.__init__": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.none": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.snappy": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.zlib": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.bz2": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.lz4": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.lz4hc": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType.zstd": {"tf": 1.7320508075688772}, "rocksdict.DBRecoveryMode": {"tf": 5.916079783099616}, "rocksdict.DBRecoveryMode.__init__": {"tf": 1.7320508075688772}, "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records": {"tf": 1.7320508075688772}, "rocksdict.DBRecoveryMode.absolute_consistency": {"tf": 1.7320508075688772}, "rocksdict.DBRecoveryMode.point_in_time": {"tf": 1.7320508075688772}, "rocksdict.DBRecoveryMode.skip_any_corrupted_record": {"tf": 1.7320508075688772}, "rocksdict.Env": {"tf": 1.7320508075688772}, "rocksdict.Env.__init__": {"tf": 1.7320508075688772}, "rocksdict.Env.mem_env": {"tf": 1.7320508075688772}, "rocksdict.Env.set_background_threads": {"tf": 2.6457513110645907}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1.7320508075688772}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1.7320508075688772}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1.7320508075688772}, "rocksdict.Env.join_all_threads": {"tf": 1.7320508075688772}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1.7320508075688772}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1.7320508075688772}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1.7320508075688772}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1.7320508075688772}, "rocksdict.FifoCompactOptions": {"tf": 1.7320508075688772}, "rocksdict.FifoCompactOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 2.6457513110645907}, "rocksdict.CompactOptions": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.__init__": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_change_level": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_target_level": {"tf": 1.7320508075688772}, "rocksdict.BottommostLevelCompaction": {"tf": 1.7320508075688772}, "rocksdict.BottommostLevelCompaction.__init__": {"tf": 1.7320508075688772}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1.4142135623730951}}, "df": 333, "a": {"1": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"rocksdict": {"tf": 3.3166247903554}, "rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Rdict.ingest_external_file": {"tf": 1.7320508075688772}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1.4142135623730951}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 2.449489742783178}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2.449489742783178}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 75, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 2}, "rocksdict.RdictIter.status": {"tf": 1.7320508075688772}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 27, "d": {"docs": {"rocksdict": {"tf": 2}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.449489742783178}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 2}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 2}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 68}, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 9, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 21, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}}, "df": 29}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}}, "df": 7}}}}}}, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}, "rocksdict.Options.set_atomic_flush": {"tf": 1.7320508075688772}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 43, "n": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1.4142135623730951}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 41, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 3.1622776601683795}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 2.449489742783178}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 38, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 9, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.AccessType": {"tf": 2.23606797749979}, "rocksdict.AccessType.read_write": {"tf": 2.23606797749979}, "rocksdict.AccessType.read_only": {"tf": 2.23606797749979}, "rocksdict.AccessType.secondary": {"tf": 2.23606797749979}, "rocksdict.AccessType.with_ttl": {"tf": 2.23606797749979}}, "df": 6, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.AccessType": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2}, "rocksdict.AccessType.read_only": {"tf": 2}, "rocksdict.AccessType.secondary": {"tf": 2}, "rocksdict.AccessType.with_ttl": {"tf": 2}}, "df": 6}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 4}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 16}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 4}, "d": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "[": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1.4142135623730951}}, "df": 1}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}}, "df": 3}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 9}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}}, "df": 5, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2.23606797749979}}, "df": 5}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 4, "s": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.4142135623730951}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 8, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 2.449489742783178}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1.4142135623730951}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.7320508075688772}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.8284271247461903}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.23606797749979}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 97}}, "e": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.7320508075688772}, "rocksdict.Rdict.put": {"tf": 1.4142135623730951}, "rocksdict.Rdict.key_may_exist": {"tf": 3.7416573867739413}, "rocksdict.Rdict.delete": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 2}, "rocksdict.Rdict.flush_wal": {"tf": 1.4142135623730951}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1.7320508075688772}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1.4142135623730951}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1.7320508075688772}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Rdict.compact_range": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1.4142135623730951}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete_range": {"tf": 2}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 2}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot": {"tf": 2}, "rocksdict.Snapshot.iter": {"tf": 2}, "rocksdict.Snapshot.items": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.keys": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.values": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.valid": {"tf": 2}, "rocksdict.RdictIter.status": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_first": {"tf": 2}, "rocksdict.RdictIter.seek_to_last": {"tf": 2}, "rocksdict.RdictIter.seek": {"tf": 2.23606797749979}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2.449489742783178}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1.7320508075688772}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 2.449489742783178}, "rocksdict.Options.set_db_paths": {"tf": 3.4641016151377544}, "rocksdict.Options.set_env": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 2}, "rocksdict.Options.set_compression_options": {"tf": 2.8284271247461903}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 2.6457513110645907}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 2.23606797749979}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.7320508075688772}, "rocksdict.Options.set_use_direct_reads": {"tf": 2}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 2}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 2.23606797749979}, "rocksdict.Options.set_write_buffer_size": {"tf": 2}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 4}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_successive_merges": {"tf": 3}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 3.1622776601683795}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 2}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1.7320508075688772}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 2}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1.4142135623730951}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 2.23606797749979}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 2}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 2}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 2.23606797749979}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 2.6457513110645907}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2.449489742783178}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 3.1622776601683795}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 3}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1.4142135623730951}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_change_level": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 196, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 7}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 18}}, "n": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 16}, "y": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 12}, "i": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}, "m": {"docs": {"rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 2}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2}, "rocksdict.Options.set_max_subcompactions": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 57}, "n": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 16}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 25, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.23606797749979}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 12, "s": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 9}}}, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.4142135623730951}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 2.23606797749979}, "rocksdict.Rdict.flush_wal": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 2}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek": {"tf": 2}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 2}, "rocksdict.Options.set_db_paths": {"tf": 3.1622776601683795}, "rocksdict.Options.set_env": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_fsync": {"tf": 2}, "rocksdict.Options.set_bytes_per_sync": {"tf": 2.6457513110645907}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 2}, "rocksdict.Options.set_write_buffer_size": {"tf": 2.23606797749979}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 2.23606797749979}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2.6457513110645907}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 3.4641016151377544}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1.4142135623730951}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 2.449489742783178}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 2}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 2}, "rocksdict.DBCompressionType": {"tf": 2}, "rocksdict.DBRecoveryMode": {"tf": 2}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 145, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.449489742783178}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 10}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 4}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 3}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1.4142135623730951}}, "df": 2}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 3.1622776601683795}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.create_if_missing": {"tf": 1.4142135623730951}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1.4142135623730951}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 46}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}}, "df": 2, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}}, "df": 1}, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 2.23606797749979}, "rocksdict.Options.set_plain_table_factory": {"tf": 2}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 2}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.4142135623730951}, "rocksdict.PlainTableFactoryOptions": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1.7320508075688772}}, "df": 24, "s": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 5}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 1}}}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 2.6457513110645907}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1.4142135623730951}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Env.mem_env": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_write": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_only": {"tf": 1.7320508075688772}, "rocksdict.AccessType.secondary": {"tf": 1.7320508075688772}, "rocksdict.AccessType.with_ttl": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}}, "df": 13, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}}, "df": 7}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}}, "df": 2}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.449489742783178}}, "df": 6}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 4}}, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 13, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.7320508075688772}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Options": {"tf": 1}}, "df": 6}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict": {"tf": 2.23606797749979}, "rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_write_options": {"tf": 2}, "rocksdict.Rdict.iter": {"tf": 2}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1.4142135623730951}, "rocksdict.Rdict.repair": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.AccessType": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2}, "rocksdict.AccessType.read_only": {"tf": 2}, "rocksdict.AccessType.secondary": {"tf": 2}, "rocksdict.AccessType.with_ttl": {"tf": 2}, "rocksdict.WriteOptions": {"tf": 2}, "rocksdict.RdictIter.seek_to_first": {"tf": 2}, "rocksdict.RdictIter.seek_to_last": {"tf": 2}, "rocksdict.RdictIter.seek": {"tf": 2}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2.8284271247461903}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 24, "s": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 2.449489742783178}}, "df": 2}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 4}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3}}, "s": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 2}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 4}}}}}, "d": {"docs": {"rocksdict": {"tf": 1.7320508075688772}}, "df": 1}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1.4142135623730951}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1.4142135623730951}}, "df": 9}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1.4142135623730951}, "rocksdict.Rdict.put": {"tf": 1.4142135623730951}, "rocksdict.Rdict.delete": {"tf": 1.4142135623730951}}, "df": 3}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {"rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 5}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 2}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.4142135623730951}}, "df": 8}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 3}, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}, "s": {"docs": {"rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.7320508075688772}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 11, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Env.set_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 5}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "n": {"docs": {"rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 10, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 7, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 2}, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1.4142135623730951}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 2.449489742783178}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 6}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 4}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 1}, "s": {"docs": {"rocksdict.Options.set_db_write_buffer_size": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 4}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 2, "d": {"docs": {"rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}}}}}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 29, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 12}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 3.1622776601683795}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 9, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 6}}}}}}, "t": {"3": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteBatch": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_log_file_size": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.7320508075688772}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 5}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.status": {"tf": 1.7320508075688772}, "rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 17}}, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}}, "df": 4}, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_env": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.7320508075688772}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}}, "df": 26, "r": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 11, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 4}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 42}, "s": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 4}, "c": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}}, "df": 13}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 8, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4, "s": {"docs": {"rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 5}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}}, "df": 3}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"6": {"4": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.4142135623730951}}, "df": 15, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 2.23606797749979}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3}, "s": {"docs": {"rocksdict.Env.mem_env": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"5": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}}, "df": 2}, "6": {"docs": {"rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 3}, "docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.7320508075688772}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 11, "y": {"1": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 5, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 10}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 8, "s": {"docs": {"rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.status": {"tf": 1}}, "df": 2, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}, "s": {"docs": {"rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1.4142135623730951}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1.4142135623730951}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1.4142135623730951}}, "df": 4}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 13, "n": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 4}}, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {"rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 17}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_compaction_bytes": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2}, "rocksdict.AccessType.read_only": {"tf": 2}, "rocksdict.AccessType.secondary": {"tf": 2}, "rocksdict.AccessType.with_ttl": {"tf": 2}}, "df": 6}}}, "s": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.23606797749979}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete_range": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 3.605551275463989}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2}, "rocksdict.Options.set_memtable_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 2.449489742783178}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 61, "s": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}}, "df": 60}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 11}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 10, "k": {"docs": {"rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2.23606797749979}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 16, "s": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 7}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2}}, "df": 3}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 8}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.7320508075688772}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 8, "s": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 2.6457513110645907}, "rocksdict.Snapshot": {"tf": 2.449489742783178}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2.449489742783178}}, "df": 4, "[": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 2}}, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 2.23606797749979}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1.7320508075688772}, "rocksdict.DBCompressionType": {"tf": 1.7320508075688772}}, "df": 3}}}}}, "s": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}}, "df": 1, "t": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 2}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 10, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.open": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 2.23606797749979}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 2}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 2}, "rocksdict.Options.set_target_file_size_base": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.6457513110645907}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.23606797749979}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 2}, "rocksdict.Options.set_max_log_file_size": {"tf": 2}, "rocksdict.Options.set_arena_block_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.449489742783178}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 41, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 5}, "o": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1.4142135623730951}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 3}, "r": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.7320508075688772}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 16}, "s": {"docs": {"rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 5}}, "c": {"docs": {"rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 1}}, "y": {"docs": {"rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 6}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 6}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}}}}}}}, "s": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 2.449489742783178}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 7, "d": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.23606797749979}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 6}, "s": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Env.mem_env": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 2}}}, "f": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 2}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.put": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete_range": {"tf": 1.4142135623730951}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1.4142135623730951}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 140, "s": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 5, "d": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 3}, "s": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 10}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_env": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1}, "s": {"docs": {"rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 15, "s": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 7, "d": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 6}, "s": {"docs": {"rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_write_buffer_size": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 2}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}}, "df": 4, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 2.6457513110645907}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.7320508075688772}}, "df": 3}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {"rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 2}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.items": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.keys": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.values": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 7, "s": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1.4142135623730951}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 1}}, "t": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 4}}}}}}}, "d": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 2.23606797749979}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 37, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1.4142135623730951}, "rocksdict.Rdict.repair": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2}}, "df": 28, "s": {"docs": {"rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 10, "n": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}}, "df": 3}}}, "n": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}}, "df": 2, "e": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 5}}, "c": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {"rocksdict": {"tf": 4.47213595499958}, "rocksdict.Rdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_write_options": {"tf": 2.8284271247461903}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 2}, "rocksdict.Rdict.snapshot": {"tf": 2.23606797749979}, "rocksdict.Rdict.close": {"tf": 2}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.AccessType": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2}, "rocksdict.AccessType.read_only": {"tf": 2}, "rocksdict.AccessType.secondary": {"tf": 2}, "rocksdict.AccessType.with_ttl": {"tf": 2}, "rocksdict.WriteOptions": {"tf": 2.8284271247461903}, "rocksdict.Snapshot": {"tf": 2.23606797749979}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.7320508075688772}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 35, "[": {"0": {"docs": {"rocksdict.Rdict": {"tf": 1.4142135623730951}}, "df": 1}, "1": {"docs": {"rocksdict": {"tf": 2}}, "df": 1}, "docs": {}, "df": 0, "b": {"docs": {"rocksdict": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}}, "df": 3}}, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}}, "df": 3}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 2.449489742783178}, "rocksdict.DBCompressionType": {"tf": 1}}, "df": 3, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 1, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1.4142135623730951}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.drop_column_family": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 2.23606797749979}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 17}}}}}}}}}}}, "l": {"0": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3}, "docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 5, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 6}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 2}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1.4142135623730951}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 9}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 4}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}}, "df": 9, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 2}, "d": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}}, "s": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}}, "df": 5}}}}, "g": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 2}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 2.6457513110645907}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.7320508075688772}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1.7320508075688772}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.SstFileWriter.open": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_inplace_update_locks": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}}, "df": 1}, "e": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"0": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}, "docs": {"rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 3.3166247903554}, "rocksdict.Options.set_target_file_size_base": {"tf": 2.23606797749979}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_target_level": {"tf": 1.7320508075688772}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1.4142135623730951}}, "df": 28, "s": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1.7320508075688772}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 7}}}}, "n": {"docs": {"rocksdict.SliceTransform.create_max_len_prefix": {"tf": 2.23606797749979}}, "df": 1, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1.4142135623730951}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.7320508075688772}}, "df": 4}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 6}, "l": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 1}}, "z": {"4": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.7320508075688772}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1.7320508075688772}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 36, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 2}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1.4142135623730951}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 3}}}, "p": {"docs": {"rocksdict": {"tf": 2.23606797749979}}, "df": 1}, "o": {"docs": {"rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 6, "n": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 13, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1}}, "df": 7}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1.4142135623730951}, "rocksdict.Rdict.key_may_exist": {"tf": 2.449489742783178}, "rocksdict.Rdict.write": {"tf": 1.4142135623730951}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.7320508075688772}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 37, "e": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 7, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 11}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteBatch.delete": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1.7320508075688772}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1}}, "df": 7}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.4142135623730951}}, "df": 15}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_env": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}}, "df": 6}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 9, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 4}}, "s": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 2}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.7320508075688772}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 2}, "rocksdict.Options.set_bloom_locality": {"tf": 1.7320508075688772}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 3}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 2.6457513110645907}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.23606797749979}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1.4142135623730951}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1.4142135623730951}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 105, "f": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 6}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 33, "e": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}}, "df": 18, "s": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 26}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 4}}}, "r": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.7320508075688772}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 31, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_write": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_only": {"tf": 1.7320508075688772}, "rocksdict.AccessType.secondary": {"tf": 1.7320508075688772}, "rocksdict.AccessType.with_ttl": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1.7320508075688772}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 10, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}}, "df": 4}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 19, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 15, "s": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 2.449489742783178}, "rocksdict.Rdict.set_write_options": {"tf": 2.6457513110645907}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.7320508075688772}, "rocksdict.Rdict.put": {"tf": 1.7320508075688772}, "rocksdict.Rdict.delete": {"tf": 1.7320508075688772}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get_column_family": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1.7320508075688772}, "rocksdict.Rdict.repair": {"tf": 1.7320508075688772}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions": {"tf": 3}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.load_latest": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_type": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 2}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 2}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 42, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}}, "df": 5, "d": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Options": {"tf": 4}, "rocksdict.Options.set_compression_type": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 3}, "rocksdict.Options.set_plain_table_factory": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 2.449489742783178}}, "df": 11}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 2}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 8, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}}, "df": 9}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 6, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 6}}}}}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 3}, "w": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}}, "df": 1}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "k": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "y": {"2": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}, "3": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}, "docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 2.23606797749979}, "rocksdict.Rdict.put": {"tf": 1.7320508075688772}, "rocksdict.Rdict.key_may_exist": {"tf": 3.872983346207417}, "rocksdict.Rdict.delete": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 2.449489742783178}, "rocksdict.Rdict.items": {"tf": 2}, "rocksdict.Rdict.keys": {"tf": 2}, "rocksdict.Rdict.values": {"tf": 2}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete_range": {"tf": 3.1622776601683795}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 2}, "rocksdict.Snapshot.keys": {"tf": 2}, "rocksdict.Snapshot.values": {"tf": 2}, "rocksdict.RdictIter.seek_to_first": {"tf": 2}, "rocksdict.RdictIter.seek_to_last": {"tf": 2}, "rocksdict.RdictIter.seek": {"tf": 2.6457513110645907}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2.6457513110645907}, "rocksdict.RdictIter.next": {"tf": 1}, "rocksdict.RdictIter.prev": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_support": {"tf": 1.4142135623730951}, "rocksdict.Options.set_plain_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}}, "df": 41, "s": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1.7320508075688772}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}}, "df": 21}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.4142135623730951}}, "df": 5, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"2": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}, "3": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 2}, "docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.7320508075688772}, "rocksdict.Rdict.put": {"tf": 1.7320508075688772}, "rocksdict.Rdict.key_may_exist": {"tf": 2}, "rocksdict.Rdict.iter": {"tf": 2.449489742783178}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 44, "s": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 12}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}}, "df": 2}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}, "i": {"docs": {"rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 2.23606797749979}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Snapshot": {"tf": 2.23606797749979}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 11, "s": {"docs": {"rocksdict": {"tf": 2.449489742783178}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.7320508075688772}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.status": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1.7320508075688772}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2.449489742783178}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 2}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_unordered_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.6457513110645907}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.449489742783178}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1.4142135623730951}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 2.449489742783178}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 2}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 2.449489742783178}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2.449489742783178}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 2.6457513110645907}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1.4142135623730951}}, "df": 88, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}, "n": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 2.449489742783178}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 2}, "rocksdict.Snapshot": {"tf": 2.449489742783178}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 2}, "rocksdict.Options.set_env": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 2}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 2}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1.4142135623730951}}, "df": 87, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}}, "df": 4, "o": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}}, "df": 12}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_env": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Rdict.close": {"tf": 2}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 5}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.put": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}}, "df": 2}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}, "s": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 5}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 2}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 15, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 2}}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1.4142135623730951}, "rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.7320508075688772}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.7320508075688772}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.6457513110645907}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2.23606797749979}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.4142135623730951}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 98, "f": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.7320508075688772}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.7320508075688772}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.7320508075688772}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 40, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.iter": {"tf": 4.47213595499958}, "rocksdict.RdictIter.seek_to_first": {"tf": 3.3166247903554}, "rocksdict.RdictIter.seek_to_last": {"tf": 3.3166247903554}, "rocksdict.RdictIter.seek": {"tf": 2.449489742783178}, "rocksdict.RdictIter.seek_for_prev": {"tf": 2.23606797749979}}, "df": 5, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.items": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.keys": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.values": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 10, "s": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.items": {"tf": 1.7320508075688772}, "rocksdict.Rdict.keys": {"tf": 1.7320508075688772}, "rocksdict.Rdict.values": {"tf": 1.7320508075688772}, "rocksdict.Snapshot.items": {"tf": 1.7320508075688772}, "rocksdict.Snapshot.keys": {"tf": 1.7320508075688772}, "rocksdict.Snapshot.values": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.status": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 2}}, "df": 13, "s": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 5}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 28, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 8}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 10, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 2}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}, "*": {"docs": {}, "df": 0, "*": {"2": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2, "d": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 2}}}}}}, "/": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.status": {"tf": 1.4142135623730951}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.7320508075688772}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}}, "df": 34}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 10}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 5}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 11}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 20}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 48, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.7320508075688772}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.8284271247461903}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 3.1622776601683795}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1.4142135623730951}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.7320508075688772}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 74}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 2}}, "k": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 3.1622776601683795}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1.7320508075688772}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 13, "l": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.flush": {"tf": 1.4142135623730951}, "rocksdict.Rdict.cancel_all_background": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}}, "df": 7}}, "s": {"docs": {"rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 2.8284271247461903}, "rocksdict.Rdict.put": {"tf": 2}, "rocksdict.Rdict.delete": {"tf": 2}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.write": {"tf": 1.7320508075688772}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter.open": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 2.8284271247461903}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 2}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 2}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 2.449489742783178}, "rocksdict.Options.set_write_buffer_size": {"tf": 2.23606797749979}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.7320508075688772}, "rocksdict.Options.set_unordered_write": {"tf": 2.6457513110645907}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 3.605551275463989}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2.8284271247461903}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 39, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.7320508075688772}, "rocksdict.Rdict.write": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.ColumnFamily": {"tf": 1}}, "df": 9}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "s": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}}, "df": 16}, "r": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.7320508075688772}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 9}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "e": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 17, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 5}}}, "b": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 2.449489742783178}}, "df": 1, "[": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 5}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 6}}}, "n": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}, "c": {"1": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.7320508075688772}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 36, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.flush": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 3}, "r": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 1}}, "e": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 5}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_row_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 2}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.7320508075688772}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 2.6457513110645907}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 13, "d": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 3, "d": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Cache.set_capacity": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 2}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 2}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 2}, "rocksdict.WriteBatch.put": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete_range": {"tf": 2}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1.4142135623730951}}, "df": 31, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 3}}}}}}}}, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.BlockBasedOptions": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.CuckooTableOptions": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.write": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 4}, "c": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 2}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_number": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.7320508075688772}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_style": {"tf": 1}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.4142135623730951}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 2.23606797749979}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 32, "s": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_universal_compaction_options": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1.4142135623730951}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 8}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 2.449489742783178}, "rocksdict.Options.set_compression_options": {"tf": 2}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_min_level_to_compress": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1.4142135623730951}}, "df": 8}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.7320508075688772}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 5}}}, "s": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 7, "d": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 13}, "s": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Snapshot": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}}}}}, "c": {"3": {"2": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 2}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.finish": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 5, "d": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.WriteBatch.clear": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}}, "df": 8, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 3, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.7320508075688772}, "rocksdict.ChecksumType": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 14}}}}, "d": {"docs": {"rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 3}, "s": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 18, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 3}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1.4142135623730951}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "t": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}}, "df": 1}}, "f": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.close": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "u": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 3}}, "t": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.7320508075688772}}, "df": 1}}, "f": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 2}, "rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}}, "df": 16}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.SstFileWriter.finish": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.SstFileWriter.open": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.finish": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 2}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_log_dir": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 3.3166247903554}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 2.6457513110645907}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.7320508075688772}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.UniversalCompactOptions.size_ratio": {"tf": 2}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}, "rocksdict.Env.mem_env": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1.4142135623730951}}, "df": 34, "s": {"docs": {"rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_env": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1.7320508075688772}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_is_fd_close_on_exec": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 2}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 2}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 46, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.4142135623730951}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}}, "df": 10, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 2}}}, "x": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1.7320508075688772}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict": {"tf": 2.449489742783178}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.keys": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.values": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 2.23606797749979}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}}, "df": 59}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict": {"tf": 2}, "rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.items": {"tf": 1.4142135623730951}, "rocksdict.Rdict.keys": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 2}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot": {"tf": 2}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 2}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 2}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_paths": {"tf": 1.7320508075688772}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_table_cache_num_shard_bits": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 3.4641016151377544}, "rocksdict.Options.set_target_file_size_base": {"tf": 2}, "rocksdict.Options.set_fifo_compaction_options": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 2}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_inplace_update_locks": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_num_levels": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.Env.set_background_threads": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}, "rocksdict.Env.lower_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}}, "df": 105, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 8}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 9}}}, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2}, "rocksdict.WriteBatch.delete": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 57}}, "l": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}}, "df": 9}}}, "y": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Rdict.create_column_family": {"tf": 2}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 2}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.ingest_external_file": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Rdict.set_options": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 2.23606797749979}, "rocksdict.WriteBatch.put": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete": {"tf": 1.7320508075688772}, "rocksdict.WriteBatch.delete_range": {"tf": 2}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1.4142135623730951}}, "df": 24}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_env": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 1, "y": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 3.3166247903554}, "rocksdict.Options.set_plain_table_factory": {"tf": 3.1622776601683795}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 7}, "s": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.flush": {"tf": 2}, "rocksdict.Rdict.close": {"tf": 1.4142135623730951}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.23606797749979}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 7}, "s": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1.4142135623730951}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 2.23606797749979}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.UniversalCompactOptions.size_ratio": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.set_dumps": {"tf": 1}, "rocksdict.Rdict.set_loads": {"tf": 1}, "rocksdict.WriteBatch.set_dumps": {"tf": 1}, "rocksdict.SstFileWriter.set_dumps": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 4}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 3, "y": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1.7320508075688772}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 8}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1}}, "df": 1}}}}}}}}}}}, "w": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions": {"tf": 1.4142135623730951}}, "df": 10}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.snapshot": {"tf": 1.7320508075688772}, "rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1.4142135623730951}, "rocksdict.Snapshot": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_global_seqno": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1.4142135623730951}}, "df": 11}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteBatch": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.7320508075688772}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 8, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1.4142135623730951}, "rocksdict.Options.set_ratelimiter": {"tf": 1.4142135623730951}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}}, "df": 5}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 30}}}, "b": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1.7320508075688772}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.Rdict.destroy": {"tf": 1}, "rocksdict.Rdict.repair": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1.4142135623730951}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 29}}}, "d": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 3.605551275463989}, "rocksdict.Rdict": {"tf": 1.7320508075688772}, "rocksdict.Rdict.set_write_options": {"tf": 1.7320508075688772}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1.7320508075688772}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1.7320508075688772}, "rocksdict.Rdict.snapshot": {"tf": 1.7320508075688772}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.AccessType": {"tf": 2}, "rocksdict.AccessType.read_write": {"tf": 2}, "rocksdict.AccessType.read_only": {"tf": 2}, "rocksdict.AccessType.secondary": {"tf": 2}, "rocksdict.AccessType.with_ttl": {"tf": 2}, "rocksdict.WriteOptions": {"tf": 1.7320508075688772}, "rocksdict.Snapshot": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek": {"tf": 1.7320508075688772}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.7320508075688772}, "rocksdict.Options": {"tf": 1.4142135623730951}}, "df": 25, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 2}, "rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_write": {"tf": 1.4142135623730951}, "rocksdict.AccessType.read_only": {"tf": 1.4142135623730951}, "rocksdict.AccessType.secondary": {"tf": 1.4142135623730951}, "rocksdict.AccessType.with_ttl": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.iter": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}}, "df": 34, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}}, "df": 6}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.iter": {"tf": 1.4142135623730951}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.RdictIter.seek_to_first": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_to_last": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek": {"tf": 1.4142135623730951}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 8}}}, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_env": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_async_io": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 3}, "d": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.WriteOptions": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.path": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 12, "s": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.iter": {"tf": 1}, "rocksdict.Rdict.live_files": {"tf": 1}, "rocksdict.SstFileWriter.file_size": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.RdictIter.key": {"tf": 1}, "rocksdict.RdictIter.value": {"tf": 1}, "rocksdict.Options.load_latest": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 13}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}}, "df": 2}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.iter": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 2}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.no_slowdown": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}}, "df": 7, "s": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}}, "df": 2}, "d": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.repair": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_wal_recovery_mode": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_use_fsync": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1}, "rocksdict.BlockBasedOptions.set_bloom_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 8}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 2}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.UniversalCompactOptions.stop_style": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.7320508075688772}}, "df": 14, "r": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 2, "s": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1.4142135623730951}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 2}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 20}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {"rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.status": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 12, "h": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 2.23606797749979}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_hash_ratio": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1.4142135623730951}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1.4142135623730951}}, "df": 15}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 2.23606797749979}}, "df": 1, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 2}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 6}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.AccessType": {"tf": 1}, "rocksdict.AccessType.read_write": {"tf": 1}, "rocksdict.AccessType.read_only": {"tf": 1}, "rocksdict.AccessType.secondary": {"tf": 1}, "rocksdict.AccessType.with_ttl": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}}, "df": 6}}}, "t": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 3}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_io_priority": {"tf": 1}, "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 8}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_optimize_filters_for_hits": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}}, "df": 1}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {"rocksdict.Options.set_env": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1.4142135623730951}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 3, "b": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.set_read_options": {"tf": 1}, "rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.get_column_family": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1.4142135623730951}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 2.23606797749979}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 16, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}}, "df": 1, "d": {"docs": {"rocksdict.SstFileWriter": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict": {"tf": 1.7320508075688772}, "rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 2}}, "t": {"docs": {"rocksdict.WriteOptions.disable_wal": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 2.23606797749979}, "rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.4142135623730951}}, "df": 8}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1, "n": {"docs": {"rocksdict.Rdict.create_column_family": {"tf": 1}, "rocksdict.Rdict.drop_column_family": {"tf": 1}, "rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 8}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.close": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 6, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}, "d": {"docs": {"rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 3}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}}, "df": 6}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Rdict.compact_range": {"tf": 1}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.7320508075688772}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.flush": {"tf": 1.4142135623730951}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_max_manifest_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.AccessType": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_write": {"tf": 1.7320508075688772}, "rocksdict.AccessType.read_only": {"tf": 1.7320508075688772}, "rocksdict.AccessType.secondary": {"tf": 1.7320508075688772}, "rocksdict.AccessType.with_ttl": {"tf": 1.7320508075688772}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 2.6457513110645907}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.7320508075688772}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_advise_random_on_open": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 20}, "k": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 3, "s": {"docs": {"rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "x": {"docs": {"rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_max_file_opening_threads": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.7320508075688772}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.7320508075688772}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}, "rocksdict.SliceTransform.create_max_len_prefix": {"tf": 1}, "rocksdict.FifoCompactOptions.max_table_files_size": {"tf": 1}}, "df": 21, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_zero_stop_writes_trigger": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_merge_width": {"tf": 1}}, "df": 12}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_dump_malloc_stats": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}}, "df": 11}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.ignore_missing_column_families": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 5, "s": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}, "d": {"docs": {"rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1.7320508075688772}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Snapshot.iter": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_recovery_mode": {"tf": 1}, "rocksdict.Options.set_row_cache": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1.4142135623730951}, "rocksdict.DBRecoveryMode": {"tf": 1.4142135623730951}}, "df": 17}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.latest_sequence_number": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}}, "df": 1}, "d": {"docs": {"rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.ReadOptions.set_tailing": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_memtable_factory": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1}}, "df": 13, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {"rocksdict.Rdict.set_write_options": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions": {"tf": 1.4142135623730951}}, "df": 2}, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.RdictIter.valid": {"tf": 1}, "rocksdict.RdictIter.seek": {"tf": 1}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 6}}}, "a": {"docs": {"rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 2}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.Cache.get_usage": {"tf": 1}, "rocksdict.Cache.get_pinned_usage": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 19}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_allow_concurrent_memtable_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 2}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_inplace_update_support": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 2}, "rocksdict.Options.set_memtable_factory": {"tf": 1.7320508075688772}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1.4142135623730951}, "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush": {"tf": 1.4142135623730951}, "rocksdict.MemtableFactory": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 21, "s": {"docs": {"rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}}, "df": 4}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.close": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_report_bg_io_stats": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}}, "df": 11}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_paranoid_checks": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 2}}, "df": 7, "d": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}}, "df": 2}, "s": {"docs": {"rocksdict.Options.set_max_successive_merges": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}}, "df": 5}}}, "n": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.4142135623730951}}, "df": 4, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}, "rocksdict.UniversalCompactOptions.min_merge_width": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}}, "df": 7}}}}, "s": {"docs": {"rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {"rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.7320508075688772}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1.4142135623730951}}, "df": 3}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"rocksdict.Options.set_allow_mmap_writes": {"tf": 1}, "rocksdict.Options.set_allow_mmap_reads": {"tf": 1}}, "df": 2}}}}, "b": {"1": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"rocksdict": {"tf": 2}, "rocksdict.RdictIter.seek_for_prev": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}}, "df": 2}, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {"rocksdict.Rdict.key_may_exist": {"tf": 1}, "rocksdict.Rdict.snapshot": {"tf": 1}, "rocksdict.Snapshot": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1}}, "df": 16}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Rdict.flush_wal": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options": {"tf": 1.7320508075688772}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 2}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 2}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 2}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 2}, "rocksdict.Options.set_write_buffer_size": {"tf": 2}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.23606797749979}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"rocksdict.Options.set_min_write_buffer_number": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.23606797749979}}, "df": 5}}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Rdict.key_may_exist": {"tf": 1.4142135623730951}, "rocksdict.Rdict.get_column_family_handle": {"tf": 1}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.Rdict.close": {"tf": 1}, "rocksdict.Rdict.property_int_value": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1.4142135623730951}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.disable_wal": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1.4142135623730951}, "rocksdict.WriteOptions.memtable_insert_hint_per_batch": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.create_if_missing": {"tf": 1}, "rocksdict.Options.create_missing_column_families": {"tf": 1}, "rocksdict.Options.set_error_if_exists": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 2.23606797749979}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1.4142135623730951}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_use_fsync": {"tf": 1}, "rocksdict.Options.set_db_log_dir": {"tf": 1.7320508075688772}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1.7320508075688772}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1.7320508075688772}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 2}, "rocksdict.Options.set_max_manifest_file_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 2}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1.4142135623730951}, "rocksdict.Options.set_disable_auto_compactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_successive_merges": {"tf": 1}, "rocksdict.Options.set_bloom_locality": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 2.23606797749979}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_dir": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 3}, "rocksdict.Options.set_wal_size_limit_mb": {"tf": 1}, "rocksdict.Options.set_keep_log_file_num": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_ignore_range_deletions": {"tf": 1}, "rocksdict.ReadOptions.set_verify_checksums": {"tf": 1}, "rocksdict.ColumnFamily": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_move_files": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_checksum_type": {"tf": 1.4142135623730951}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 2}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}, "rocksdict.Env.set_high_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_low_priority_background_threads": {"tf": 1}, "rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}, "rocksdict.CompactOptions.set_change_level": {"tf": 1}, "rocksdict.CompactOptions.set_target_level": {"tf": 1}}, "df": 81, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"rocksdict": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1}, "rocksdict.DBCompactionStyle": {"tf": 1}, "rocksdict.DBCompressionType": {"tf": 1}, "rocksdict.DBRecoveryMode": {"tf": 1}}, "df": 7}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.WriteOptions.sync": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_max_sequential_skip_in_iterations": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_use_adaptive_mutex": {"tf": 1}, "rocksdict.ReadOptions.set_max_skippable_internal_keys": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_snapshot_consistency": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}}, "df": 17}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedIndexType.hash_search": {"tf": 1}}, "df": 6}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.Rdict.delete_range": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 2.23606797749979}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"rocksdict.CuckooTableOptions.set_identity_as_first_hash": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.set_paranoid_checks": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"rocksdict.Options.set_enable_pipelined_write": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options.prepare_for_bulk_load": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_min_write_buffer_number_to_merge": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_compression_per_level": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1}, "rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 3}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"rocksdict.BlockBasedOptions.set_block_restart_interval": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_number": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_wal_ttl_seconds": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}}, "df": 5}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_unordered_write": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.write": {"tf": 1}, "rocksdict.WriteBatch.len": {"tf": 1}, "rocksdict.WriteBatch.is_empty": {"tf": 1}, "rocksdict.WriteBatch.clear": {"tf": 1}, "rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1.4142135623730951}}, "df": 7}}}, "d": {"docs": {"rocksdict": {"tf": 1.7320508075688772}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.Options": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}}, "df": 3, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.BlockBasedOptions.set_format_version": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Rdict.items": {"tf": 1}, "rocksdict.Rdict.keys": {"tf": 1}, "rocksdict.Rdict.values": {"tf": 1}, "rocksdict.Snapshot.items": {"tf": 1}, "rocksdict.Snapshot.keys": {"tf": 1}, "rocksdict.Snapshot.values": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Rdict.cancel_all_background": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1}, "rocksdict.Options.set_env": {"tf": 1}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1.4142135623730951}, "rocksdict.Env.set_background_threads": {"tf": 1}}, "df": 8}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_target_file_size_base": {"tf": 1.7320508075688772}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1}, "rocksdict.Env.mem_env": {"tf": 1}}, "df": 9, "d": {"docs": {"rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1.4142135623730951}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 1}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}, "rocksdict.CuckooTableOptions": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}}, "df": 11}}}}, "y": {"docs": {"rocksdict.Rdict.get": {"tf": 1}, "rocksdict.Rdict.put": {"tf": 1}, "rocksdict.Rdict.delete": {"tf": 1}, "rocksdict.Rdict.try_catch_up_with_primary": {"tf": 1}, "rocksdict.Rdict.property_value": {"tf": 1}, "rocksdict.WriteBatch.put": {"tf": 1}, "rocksdict.WriteBatch.delete": {"tf": 1}, "rocksdict.WriteBatch.delete_range": {"tf": 1}, "rocksdict.SstFileWriter": {"tf": 1}, "rocksdict.WriteOptions.low_pri": {"tf": 1}, "rocksdict.Options.increase_parallelism": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_db_paths": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_delete_obsolete_files_period_micros": {"tf": 1}, "rocksdict.Options.set_max_open_files": {"tf": 1}, "rocksdict.Options.set_writable_file_max_buffer_size": {"tf": 1}, "rocksdict.Options.set_use_direct_reads": {"tf": 1}, "rocksdict.Options.set_use_direct_io_for_flush_and_compaction": {"tf": 1}, "rocksdict.Options.set_target_file_size_multiplier": {"tf": 1.4142135623730951}, "rocksdict.Options.set_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_target_file_size_base": {"tf": 1}, "rocksdict.Options.set_level_zero_file_num_compaction_trigger": {"tf": 1}, "rocksdict.Options.set_level_zero_slowdown_writes_trigger": {"tf": 1}, "rocksdict.Options.set_unordered_write": {"tf": 1}, "rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.Options.set_memtable_huge_page_size": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_enable_pipelined_write": {"tf": 1}, "rocksdict.Options.set_max_total_wal_size": {"tf": 1}, "rocksdict.Options.set_skip_stats_update_on_db_open": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.CuckooTableOptions.set_max_search_depth": {"tf": 1}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}, "rocksdict.ChecksumType": {"tf": 1}, "rocksdict.Env.join_all_threads": {"tf": 1}}, "df": 42, "t": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"rocksdict": {"tf": 2.449489742783178}, "rocksdict.Rdict": {"tf": 1}, "rocksdict.WriteBatch.size_in_bytes": {"tf": 1}, "rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_bytes_per_sync": {"tf": 1.4142135623730951}, "rocksdict.Options.set_wal_bytes_per_sync": {"tf": 1}, "rocksdict.Options.set_max_bytes_for_level_base": {"tf": 2.449489742783178}, "rocksdict.Options.set_max_bytes_for_level_multiplier_additional": {"tf": 1}, "rocksdict.Options.set_max_write_buffer_size_to_maintain": {"tf": 1}, "rocksdict.Options.set_max_compaction_bytes": {"tf": 1.4142135623730951}, "rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}, "rocksdict.Options.set_ratelimiter": {"tf": 1}, "rocksdict.Options.set_soft_pending_compaction_bytes_limit": {"tf": 1}, "rocksdict.Options.set_hard_pending_compaction_bytes_limit": {"tf": 1.4142135623730951}, "rocksdict.UniversalCompactOptions.max_size_amplification_percent": {"tf": 1.7320508075688772}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1}}, "df": 21}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"rocksdict": {"tf": 1.4142135623730951}, "rocksdict.Rdict.flush": {"tf": 1}, "rocksdict.WriteBatch": {"tf": 1}, "rocksdict.Options": {"tf": 1}, "rocksdict.ReadOptions": {"tf": 1}}, "df": 5}, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.increase_parallelism": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Env.set_bottom_priority_background_threads": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.IngestExternalFileOptions.set_ingest_behind": {"tf": 1}, "rocksdict.CompactOptions.set_bottommost_level_compaction": {"tf": 1}, "rocksdict.BottommostLevelCompaction.skip": {"tf": 1}, "rocksdict.BottommostLevelCompaction.if_have_compaction_filter": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force": {"tf": 1}, "rocksdict.BottommostLevelCompaction.force_optimized": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}, "h": {"docs": {"rocksdict.Options.set_wal_ttl_seconds": {"tf": 1.7320508075688772}, "rocksdict.Options.set_atomic_flush": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_level_compaction_dynamic_level_bytes": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_upper_bound": {"tf": 1}, "rocksdict.ReadOptions.set_iterate_lower_bound": {"tf": 1}, "rocksdict.ReadOptions.set_prefix_same_as_start": {"tf": 1}}, "df": 4, "s": {"docs": {"rocksdict.ReadOptions": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.CuckooTableOptions.set_use_module_hash": {"tf": 1}}, "df": 1, "s": {"docs": {"rocksdict.Options": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 3}}, "g": {"docs": {"rocksdict.Options.optimize_level_style_compaction": {"tf": 1}, "rocksdict.Options.optimize_universal_style_compaction": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"rocksdict.Options.set_compaction_readahead_size": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.BlockBasedIndexType.two_level_index_search": {"tf": 1}}, "df": 5, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_cuckoo_table_factory": {"tf": 1.4142135623730951}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_arena_block_size": {"tf": 1}, "rocksdict.ReadOptions.fill_cache": {"tf": 1.7320508075688772}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.BlockBasedOptions": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_size": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 2}, "rocksdict.BlockBasedOptions.set_partition_filters": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.disable_cache": {"tf": 1}, "rocksdict.BlockBasedOptions.set_index_type": {"tf": 2}, "rocksdict.BlockBasedOptions.set_index_block_restart_interval": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 3.3166247903554}, "rocksdict.BlockBasedOptions.set_data_block_hash_ratio": {"tf": 1}, "rocksdict.CuckooTableOptions.set_cuckoo_block_size": {"tf": 1}, "rocksdict.DataBlockIndexType.binary_and_hash": {"tf": 1}, "rocksdict.BlockBasedIndexType.binary_search": {"tf": 1}, "rocksdict.Cache.new_hyper_clock_cache": {"tf": 1.4142135623730951}}, "df": 20, "s": {"docs": {"rocksdict.Options.set_compression_type": {"tf": 1}, "rocksdict.Options.set_compression_options": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_pin_data": {"tf": 1}, "rocksdict.BlockBasedOptions.set_metadata_block_size": {"tf": 1}, "rocksdict.BlockBasedOptions.set_block_cache": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache": {"tf": 1.7320508075688772}, "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter": {"tf": 1.7320508075688772}, "rocksdict.DataBlockIndexType.binary_search": {"tf": 1}}, "df": 9}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_enable_write_thread_adaptive_yield": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_cuckoo_table_factory": {"tf": 1}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}}, "df": 2, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.ReadOptions.set_pin_data": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1.4142135623730951}}, "df": 2, ":": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"rocksdict.BlockBasedOptions.set_index_type": {"tf": 1.4142135623730951}, "rocksdict.BlockBasedOptions.set_data_block_index_type": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict.Options.set_bloom_locality": {"tf": 2}, "rocksdict.Options.set_plain_table_factory": {"tf": 1}, "rocksdict.Options.set_memtable_prefix_bloom_ratio": {"tf": 1.4142135623730951}, "rocksdict.Options.set_memtable_whole_key_filtering": {"tf": 1.4142135623730951}, "rocksdict.ReadOptions.set_total_order_seek": {"tf": 1}, "rocksdict.PlainTableFactoryOptions": {"tf": 1}}, "df": 6}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"rocksdict.Options.set_memtable_factory": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {"rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1.4142135623730951}}, "df": 1}, "z": {"2": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "x": {"8": {"6": {"docs": {"rocksdict": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"rocksdict": {"tf": 1}}, "df": 1}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"rocksdict.Options.set_manifest_preallocation_size": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "h": {"3": {"docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"6": {"4": {"docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"rocksdict.ChecksumType": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {"rocksdict.Rdict.iter": {"tf": 2}, "rocksdict.WriteBatch.set_default_column_family": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"rocksdict.RdictIter.seek_to_first": {"tf": 1}, "rocksdict.RdictIter.seek_to_last": {"tf": 1}, "rocksdict.UniversalCompactOptions.compression_size_percent": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.Options.set_max_subcompactions": {"tf": 1}, "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"rocksdict.Options.set_max_background_jobs": {"tf": 1}, "rocksdict.CompactOptions.set_exclusive_manual_compaction": {"tf": 1.4142135623730951}}, "df": 2}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"rocksdict.Options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_compaction_readahead_size": {"tf": 1.4142135623730951}, "rocksdict.Options.set_db_write_buffer_size": {"tf": 1}, "rocksdict.Options.set_stats_dump_period_sec": {"tf": 1}, "rocksdict.Options.set_stats_persist_period_sec": {"tf": 1}, "rocksdict.Options.set_max_log_file_size": {"tf": 1}, "rocksdict.Options.set_log_file_time_to_roll": {"tf": 1}, "rocksdict.Options.set_recycle_log_file_num": {"tf": 1}, "rocksdict.ReadOptions.set_readahead_size": {"tf": 1}}, "df": 9}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {"rocksdict.Options.set_compression_options": {"tf": 1.4142135623730951}, "rocksdict.Options.set_zstd_max_train_bytes": {"tf": 1.4142135623730951}, "rocksdict.DBCompressionType": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"rocksdict.DBCompressionType": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = [{"fullname": "rocksdict", "modulename": "rocksdict", "kind": "module", "doc": "Abstract
\n\nThis package enables users to store, query, and delete\na large number of key-value pairs on disk.
\n\nThis is especially useful when the data cannot fit into RAM.\nIf you have hundreds of GBs or many TBs of key-value data to store\nand query from, this is the package for you.
\n\nInstallation
\n\nThis package is built for macOS (x86/arm), Windows 64/32, and Linux x86/arm.\nIt can be installed from pypi with
\n\npip install rocksdict
.Introduction
\n\nBelow is a code example that shows how to do the following:
\n\n\n
\n\n- Create Rdict
\n- Store something on disk
\n- Close Rdict
\n- Open Rdict again
\n- Check Rdict elements
\n- Iterate from Rdict
\n- Batch get
\n- Delete storage
\nExamples:
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict, Options\n\npath = str(\"./test_dict\")\n\n# create a Rdict with default options at `path`\ndb = Rdict(path)\n\n# storing numbers\ndb[1.0] = 1\ndb[1] = 1.0\ndb[\"huge integer\"] = 2343546543243564534233536434567543\ndb[\"good\"] = True\ndb[\"bad\"] = False\ndb[\"bytes\"] = b\"bytes\"\ndb[\"this is a list\"] = [1, 2, 3]\ndb[\"store a dict\"] = {0: 1}\n\n# for example numpy array\nimport numpy as np\nimport pandas as pd\ndb[b\"numpy\"] = np.array([1, 2, 3])\ndb[\"a table\"] = pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]})\n\n# close Rdict\ndb.close()\n\n# reopen Rdict from disk\ndb = Rdict(path)\nassert db[1.0] == 1\nassert db[1] == 1.0\nassert db[\"huge integer\"] == 2343546543243564534233536434567543\nassert db[\"good\"] == True\nassert db[\"bad\"] == False\nassert db[\"bytes\"] == b\"bytes\"\nassert db[\"this is a list\"] == [1, 2, 3]\nassert db[\"store a dict\"] == {0: 1}\nassert np.all(db[b\"numpy\"] == np.array([1, 2, 3]))\nassert np.all(db[\"a table\"] == pd.DataFrame({\"a\": [1, 2], \"b\": [2, 1]}))\n\n# iterate through all elements\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# batch get:\nprint(db[[\"good\", \"bad\", 1.0]])\n# [True, False, 1]\n\n# delete Rdict from dict\ndb.close()\nRdict.destroy(path)\n
Supported types:
\n\n\n
\n"}, {"fullname": "rocksdict.Rdict", "modulename": "rocksdict", "qualname": "Rdict", "kind": "class", "doc": "- key:
\nint, float, bool, str, bytes
- value:
\nint, float, bool, str, bytes
and anything that\nsupportspickle
.A persistent on-disk dictionary. Supports string, int, float, bytes as key, values.
\n\nExample:
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"./test_dir\")\ndb[0] = 1\n\ndb = None\ndb = Rdict(\"./test_dir\")\nassert(db[0] == 1)\n
Arguments:
\n\n\n
\n"}, {"fullname": "rocksdict.Rdict.__init__", "modulename": "rocksdict", "qualname": "Rdict.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.Rdict.set_dumps", "modulename": "rocksdict", "qualname": "Rdict.set_dumps", "kind": "function", "doc": "- path (str): path to the database
\n- options (Options): Options object
\n- column_families (dict): (name, options) pairs, these
\nOptions
\nmust have the sameraw_mode
argument as the mainOptions
.\nA column family called 'default' is always created.- access_type (AccessType): there are four access types:\nReadWrite, ReadOnly, WithTTL, and Secondary, use\nAccessType class to create.
\nset custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.set_loads", "modulename": "rocksdict", "qualname": "Rdict.set_loads", "kind": "function", "doc": "set custom loads function
\n", "signature": "(self, /, loads):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.set_write_options", "modulename": "rocksdict", "qualname": "Rdict.set_write_options", "kind": "function", "doc": "Optionally disable WAL or sync for this write.
\n\nExample:
\n\n\n\n", "signature": "(self, /, write_opt):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.set_read_options", "modulename": "rocksdict", "qualname": "Rdict.set_read_options", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, WriteBatch, WriteOptions\n\npath = \"_path_for_rocksdb_storageY1\"\ndb = Rdict(path)\n\n# set write options\nwrite_options = WriteOptions()\nwrite_options.set_sync(False)\nwrite_options.disable_wal(True)\ndb.set_write_options(write_options)\n\n# write to db\ndb[\"my key\"] = \"my value\"\ndb[\"key2\"] = \"value2\"\ndb[\"key3\"] = \"value3\"\n\n# remove db\ndel db\nRdict.destroy(path)\n
Configure Read Options for all the get operations.
\n", "signature": "(self, /, read_opt):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.get", "modulename": "rocksdict", "qualname": "Rdict.get", "kind": "function", "doc": "Get value from key.
\n\nArguments:
\n\n\n
\n\n- key: the key or list of keys.
\n- default: the default value to return if key not found.
\n- read_opt: override preset read options\n(or use Rdict.set_read_options to preset a read options used by default).
\nReturns:
\n\n\n\n", "signature": "(self, /, key, default=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.put", "modulename": "rocksdict", "qualname": "Rdict.put", "kind": "function", "doc": "None or default value if the key does not exist.
\nInsert key value into database.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, key, value, write_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.key_may_exist", "modulename": "rocksdict", "qualname": "Rdict.key_may_exist", "kind": "function", "doc": "- key: the key.
\n- value: the value.
\n- write_opt: override preset write options\n(or use Rdict.set_write_options to preset a write options used by default).
\nCheck if a key may exist without doing any IO.
\n\nNotes:
\n\n\n\n\nIf the key definitely does not exist in the database,\n then this method returns False, else True.\n If the caller wants to obtain value when the key is found in memory,\n fetch should be set to True.\n This check is potentially lighter-weight than invoking DB::get().\n One way to make this lighter weight is to avoid doing any IOs.
\n \nThe API follows the following principle:
\n \n\n
\n \n- True, and value found => the key must exist.
\n- True => the key may or may not exist.
\n- False => the key definitely does not exist.
\nFlip it around:
\n \n\n
\n- key exists => must return True, but value may or may not be found.
\n- key doesn't exists => might still return True.
\nArguments:
\n\n\n
\n\n- key: Key to check
\n- read_opt: ReadOptions
\nReturns:
\n\n\n\n", "signature": "(self, /, key, fetch=False, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.delete", "modulename": "rocksdict", "qualname": "Rdict.delete", "kind": "function", "doc": "if
\nfetch = False
,\n returning True implies that the key may exist.\n returning False implies that the key definitely does not exist.\n iffetch = True
,\n returning (True, value) implies that the key is found and definitely exist.\n returning (False, None) implies that the key definitely does not exist.\n returning (True, None) implies that the key may exist.Delete entry from the database.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, key, write_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.iter", "modulename": "rocksdict", "qualname": "Rdict.iter", "kind": "function", "doc": "- key: the key.
\n- write_opt: override preset write options\n(or use Rdict.set_write_options to preset a write options used by default).
\nReversible for iterating over keys and values.
\n\nExamples:
\n\n\n\n\n::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage5\"\ndb = Rdict(path)\n\nfor i in range(50):\n db[i] = i ** 2\n\niter = db.iter()\n\niter.seek_to_first()\n\nj = 0\nwhile iter.valid():\n assert iter.key() == j\n assert iter.value() == j ** 2\n print(f\"{iter.key()} {iter.value()}\")\n iter.next()\n j += 1\n\niter.seek_to_first();\nassert iter.key() == 0\nassert iter.value() == 0\nprint(f\"{iter.key()} {iter.value()}\")\n\niter.seek(25)\nassert iter.key() == 25\nassert iter.value() == 625\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path)\n
Arguments:
\n\n\n
\n\n- read_opt: ReadOptions
\nReturns: Reversible
\n", "signature": "(self, /, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.items", "modulename": "rocksdict", "qualname": "Rdict.items", "kind": "function", "doc": "Iterate through all keys and values pairs.
\n\nExamples:
\n\n\n\n\n::
\n\n\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n
Arguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.keys", "modulename": "rocksdict", "qualname": "Rdict.keys", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions
\nIterate through all keys
\n\nExamples:
\n\n\n\n\n::
\n\n\nall_keys = [k for k in db.keys()]\n
Arguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.values", "modulename": "rocksdict", "qualname": "Rdict.values", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions
\nIterate through all values.
\n\nExamples:
\n\n\n\n\n::
\n\n\nall_keys = [v for v in db.values()]\n
Arguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.flush", "modulename": "rocksdict", "qualname": "Rdict.flush", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Manually flush the current column family.
\n\nNotes:
\n\n\n\n\nManually call mem-table flush.\n It is recommended to call flush() or close() before\n stopping the python program, to ensure that all written\n key-value pairs have been flushed to the disk.
\nArguments:
\n\n\n
\n", "signature": "(self, /, wait=True):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.flush_wal", "modulename": "rocksdict", "qualname": "Rdict.flush_wal", "kind": "function", "doc": "- wait (bool): whether to wait for the flush to finish.
\nFlushes the WAL buffer. If
\n", "signature": "(self, /, sync=True):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.create_column_family", "modulename": "rocksdict", "qualname": "Rdict.create_column_family", "kind": "function", "doc": "sync
is set totrue
, also syncs\nthe data to disk.Creates column family with given name and options.
\n\nArguments:
\n\n\n
\n\n- name: name of this column family
\n- options: Rdict Options for this column family
\nReturn:
\n\n\n\n", "signature": "(self, /, name, options=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.drop_column_family", "modulename": "rocksdict", "qualname": "Rdict.drop_column_family", "kind": "function", "doc": "the newly created column family
\nDrops the column family with the given name
\n", "signature": "(self, /, name):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.get_column_family", "modulename": "rocksdict", "qualname": "Rdict.get_column_family", "kind": "function", "doc": "Get a column family Rdict
\n\nArguments:
\n\n\n
\n\n- name: name of this column family
\n- options: Rdict Options for this column family
\nReturn:
\n\n\n\n", "signature": "(self, /, name):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.get_column_family_handle", "modulename": "rocksdict", "qualname": "Rdict.get_column_family_handle", "kind": "function", "doc": "the column family Rdict of this name
\nUse this method to obtain a ColumnFamily instance, which can be used in WriteBatch.
\n\nExample:
\n\n\n\n", "signature": "(self, /, name):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.snapshot", "modulename": "rocksdict", "qualname": "Rdict.snapshot", "kind": "function", "doc": "::
\n\n\nwb = WriteBatch()\nfor i in range(100):\n wb.put(i, i**2, db.get_column_family_handle(cf_name_1))\ndb.write(wb)\n\nwb = WriteBatch()\nwb.set_default_column_family(db.get_column_family_handle(cf_name_2))\nfor i in range(100, 200):\n wb[i] = i**2\ndb.write(wb)\n
A snapshot of the current column family.
\n\nExamples:
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.ingest_external_file", "modulename": "rocksdict", "qualname": "Rdict.ingest_external_file", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"tmp\")\nfor i in range(100):\n db[i] = i\n\n# take a snapshot\nsnapshot = db.snapshot()\n\nfor i in range(90):\n del db[i]\n\n# 0-89 are no longer in db\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# but they are still in the snapshot\nfor i in range(100):\n assert snapshot[i] == i\n\n# drop the snapshot\ndel snapshot, db\n\nRdict.destroy(\"tmp\")\n
Loads a list of external SST files created with SstFileWriter\ninto the current column family.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, paths, opts=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.try_catch_up_with_primary", "modulename": "rocksdict", "qualname": "Rdict.try_catch_up_with_primary", "kind": "function", "doc": "- paths: a list a paths
\n- opts: IngestExternalFileOptionsPy instance
\nTries to catch up with the primary by reading as much as possible from the\nlog files.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.cancel_all_background", "modulename": "rocksdict", "qualname": "Rdict.cancel_all_background", "kind": "function", "doc": "Request stopping background work, if wait is true wait until it's done.
\n", "signature": "(self, /, wait):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.write", "modulename": "rocksdict", "qualname": "Rdict.write", "kind": "function", "doc": "WriteBatch
\n\nNotes:
\n\n\n\n\nThis WriteBatch does not write to the current column family.
\nArguments:
\n\n\n
\n", "signature": "(self, /, write_batch, write_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.delete_range", "modulename": "rocksdict", "qualname": "Rdict.delete_range", "kind": "function", "doc": "- write_batch: WriteBatch instance. This instance will be consumed.
\n- write_opt: use default value if not provided.
\nRemoves the database entries in the range
\n\n[\"from\", \"to\")
of the current column family.Arguments:
\n\n\n
\n", "signature": "(self, /, begin, end, write_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.close", "modulename": "rocksdict", "qualname": "Rdict.close", "kind": "function", "doc": "- begin: included
\n- end: excluded
\n- write_opt: WriteOptions
\nFlush memory to disk, and drop the current column family.
\n\nNotes:
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.path", "modulename": "rocksdict", "qualname": "Rdict.path", "kind": "function", "doc": "Calling
\ndb.close()
is nearly equivalent to first calling\ndb.flush()
and thendel db
. However,db.close()
does\n not guarantee the underlying RocksDB to be actually closed.\n Other Column FamilyRdict
instances,ColumnFamily
\n (cf handle) instances, iterator instances such asRdictIter
,\nRdictItems
,RdictKeys
,RdictValues
can all keep RocksDB\n alive.del
all associated instances mentioned above\n to actually shut down RocksDB.Return current database path.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.compact_range", "modulename": "rocksdict", "qualname": "Rdict.compact_range", "kind": "function", "doc": "Runs a manual compaction on the Range of keys given for the current Column Family.
\n", "signature": "(self, /, begin, end, compact_opt=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.set_options", "modulename": "rocksdict", "qualname": "Rdict.set_options", "kind": "function", "doc": "Set options for the current column family.
\n", "signature": "(self, /, options):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.property_value", "modulename": "rocksdict", "qualname": "Rdict.property_value", "kind": "function", "doc": "Retrieves a RocksDB property by name, for the current column family.
\n", "signature": "(self, /, name):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.property_int_value", "modulename": "rocksdict", "qualname": "Rdict.property_int_value", "kind": "function", "doc": "Retrieves a RocksDB property and casts it to an integer\n(for the current column family).
\n\nFull list of properties that return int values could be find\nhere.
\n", "signature": "(self, /, name):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.latest_sequence_number", "modulename": "rocksdict", "qualname": "Rdict.latest_sequence_number", "kind": "function", "doc": "The sequence number of the most recent transaction.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.live_files", "modulename": "rocksdict", "qualname": "Rdict.live_files", "kind": "function", "doc": "Returns a list of all table files with their level, start key and end key
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.destroy", "modulename": "rocksdict", "qualname": "Rdict.destroy", "kind": "function", "doc": "Delete the database.
\n\nArguments:
\n\n\n
\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.repair", "modulename": "rocksdict", "qualname": "Rdict.repair", "kind": "function", "doc": "- path (str): path to this database
\n- options (rocksdict.Options): Rocksdb options object
\nRepair the database.
\n\nArguments:
\n\n\n
\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Rdict.list_cf", "modulename": "rocksdict", "qualname": "Rdict.list_cf", "kind": "function", "doc": "\n", "signature": "(path, options=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch", "modulename": "rocksdict", "qualname": "WriteBatch", "kind": "class", "doc": "- path (str): path to this database
\n- options (rocksdict.Options): Rocksdb options object
\nWriteBatch class. Use db.write() to ingest WriteBatch.
\n\nNotes:
\n\n\n\n\nA WriteBatch instance can only be ingested once,\n otherwise an Exception will be raised.
\nArguments:
\n\n\n
\n"}, {"fullname": "rocksdict.WriteBatch.__init__", "modulename": "rocksdict", "qualname": "WriteBatch.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.WriteBatch.set_dumps", "modulename": "rocksdict", "qualname": "WriteBatch.set_dumps", "kind": "function", "doc": "- raw_mode (bool): make sure that this is consistent with the Rdict.
\nchange to a custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.set_default_column_family", "modulename": "rocksdict", "qualname": "WriteBatch.set_default_column_family", "kind": "function", "doc": "Set the default item for
\n\na[i] = j
anddel a[i]
syntax.You can also use
\n\nput(key, value, column_family)
to explicitly choose column family.Arguments:
\n\n\n
\n", "signature": "(self, /, column_family=None):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.len", "modulename": "rocksdict", "qualname": "WriteBatch.len", "kind": "function", "doc": "- - column_family (ColumnFamily | None): column family descriptor or None (for default family).
\nlength of the batch
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.size_in_bytes", "modulename": "rocksdict", "qualname": "WriteBatch.size_in_bytes", "kind": "function", "doc": "Return WriteBatch serialized size (in bytes).
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.is_empty", "modulename": "rocksdict", "qualname": "WriteBatch.is_empty", "kind": "function", "doc": "Check whether the batch is empty.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.put", "modulename": "rocksdict", "qualname": "WriteBatch.put", "kind": "function", "doc": "Insert a value into the database under the given key.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, key, value, column_family=None):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.delete", "modulename": "rocksdict", "qualname": "WriteBatch.delete", "kind": "function", "doc": "- column_family: override the default column family set by set_default_column_family
\nRemoves the database entry for key. Does nothing if the key was not found.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, key, column_family=None):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.delete_range", "modulename": "rocksdict", "qualname": "WriteBatch.delete_range", "kind": "function", "doc": "- column_family: override the default column family set by set_default_column_family
\nRemove database entries in column family from start key to end key.
\n\nNotes:
\n\n\n\n\nRemoves the database entries in the range [\"begin_key\", \"end_key\"), i.e.,\n including \"begin_key\" and excluding \"end_key\". It is not an error if no\n keys exist in the range [\"begin_key\", \"end_key\").
\nArguments:
\n\n\n
\n", "signature": "(self, /, begin, end, column_family=None):", "funcdef": "def"}, {"fullname": "rocksdict.WriteBatch.clear", "modulename": "rocksdict", "qualname": "WriteBatch.clear", "kind": "function", "doc": "- begin: begin key
\n- end: end key
\n- column_family: override the default column family set by set_default_column_family
\nClear all updates buffered in this batch.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.SstFileWriter", "modulename": "rocksdict", "qualname": "SstFileWriter", "kind": "class", "doc": "SstFileWriter is used to create sst files that can be added to database later\nAll keys in files generated by SstFileWriter will have sequence number = 0.
\n\nArguments:
\n\n\n
\n"}, {"fullname": "rocksdict.SstFileWriter.__init__", "modulename": "rocksdict", "qualname": "SstFileWriter.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.SstFileWriter.set_dumps", "modulename": "rocksdict", "qualname": "SstFileWriter.set_dumps", "kind": "function", "doc": "- options: this options must have the same
\nraw_mode
as the Rdict DB.set custom dumps function
\n", "signature": "(self, /, dumps):", "funcdef": "def"}, {"fullname": "rocksdict.SstFileWriter.open", "modulename": "rocksdict", "qualname": "SstFileWriter.open", "kind": "function", "doc": "Prepare SstFileWriter to write into file located at \"file_path\".
\n", "signature": "(self, /, path):", "funcdef": "def"}, {"fullname": "rocksdict.SstFileWriter.finish", "modulename": "rocksdict", "qualname": "SstFileWriter.finish", "kind": "function", "doc": "Finalize writing to sst file and close file.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.SstFileWriter.file_size", "modulename": "rocksdict", "qualname": "SstFileWriter.file_size", "kind": "function", "doc": "returns the current file size
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.AccessType", "modulename": "rocksdict", "qualname": "AccessType", "kind": "class", "doc": "Define DB Access Types.
\n\nNotes:
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples:
\n\n\n\n"}, {"fullname": "rocksdict.AccessType.__init__", "modulename": "rocksdict", "qualname": "AccessType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.AccessType.read_write", "modulename": "rocksdict", "qualname": "AccessType.read_write", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes:
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples:
\n\n\n\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.AccessType.read_only", "modulename": "rocksdict", "qualname": "AccessType.read_only", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes:
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples:
\n\n\n\n", "signature": "(error_if_log_file_exist=False):", "funcdef": "def"}, {"fullname": "rocksdict.AccessType.secondary", "modulename": "rocksdict", "qualname": "AccessType.secondary", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes:
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples:
\n\n\n\n", "signature": "(secondary_path):", "funcdef": "def"}, {"fullname": "rocksdict.AccessType.with_ttl", "modulename": "rocksdict", "qualname": "AccessType.with_ttl", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Define DB Access Types.
\n\nNotes:
\n\n\n\n\nThere are four access types:
\n \n\n
\n- ReadWrite: default value
\n- ReadOnly
\n- WithTTL
\n- Secondary
\nExamples:
\n\n\n\n", "signature": "(duration):", "funcdef": "def"}, {"fullname": "rocksdict.WriteOptions", "modulename": "rocksdict", "qualname": "WriteOptions", "kind": "class", "doc": "::
\n\n\nfrom rocksdict import Rdict, AccessType\n\n# open with 24 hours ttl\ndb = Rdict(\"./main_path\", access_type = AccessType.with_ttl(24 * 3600))\n\n# open as read_only\ndb = Rdict(\"./main_path\", access_type = AccessType.read_only())\n\n# open as secondary\ndb = Rdict(\"./main_path\", access_type = AccessType.secondary(\"./secondary_path\"))\n
Optionally disable WAL or sync for this write.
\n\nExample:
\n\n\n\n"}, {"fullname": "rocksdict.WriteOptions.__init__", "modulename": "rocksdict", "qualname": "WriteOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.WriteOptions.sync", "modulename": "rocksdict", "qualname": "WriteOptions.sync", "kind": "variable", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, WriteBatch, WriteOptions\n\npath = \"_path_for_rocksdb_storageY1\"\ndb = Rdict(path, Options())\n\n# set write options\nwrite_options = WriteOptions()\nwrite_options.set_sync(false)\nwrite_options.disable_wal(true)\ndb.set_write_options(write_options)\n\n# write to db\ndb[\"my key\"] = \"my value\"\ndb[\"key2\"] = \"value2\"\ndb[\"key3\"] = \"value3\"\n\n# remove db\ndel db\nRdict.destroy(path, Options())\n
Sets the sync mode. If true, the write will be flushed\nfrom the operating system buffer cache before the write is considered complete.\nIf this flag is true, writes will be slower.
\n\nDefault: false
\n"}, {"fullname": "rocksdict.WriteOptions.disable_wal", "modulename": "rocksdict", "qualname": "WriteOptions.disable_wal", "kind": "variable", "doc": "Sets whether WAL should be active or not.\nIf true, writes will not first go to the write ahead log,\nand the write may got lost after a crash.
\n\nDefault: false
\n"}, {"fullname": "rocksdict.WriteOptions.ignore_missing_column_families", "modulename": "rocksdict", "qualname": "WriteOptions.ignore_missing_column_families", "kind": "variable", "doc": "If true and if user is trying to write to column families that don't exist (they were dropped),\nignore the write (don't return an error). If there are multiple writes in a WriteBatch,\nother writes will succeed.
\n\nDefault: false
\n"}, {"fullname": "rocksdict.WriteOptions.low_pri", "modulename": "rocksdict", "qualname": "WriteOptions.low_pri", "kind": "variable", "doc": "If true, this write request is of lower priority if compaction is\nbehind. In this case, no_slowdown = true, the request will be cancelled\nimmediately with Status::Incomplete() returned. Otherwise, it will be\nslowed down. The slowdown value is determined by RocksDB to guarantee\nit introduces minimum impacts to high priority writes.
\n\nDefault: false
\n"}, {"fullname": "rocksdict.WriteOptions.no_slowdown", "modulename": "rocksdict", "qualname": "WriteOptions.no_slowdown", "kind": "variable", "doc": "If true and we need to wait or sleep for the write request, fails\nimmediately with Status::Incomplete().
\n\nDefault: false
\n"}, {"fullname": "rocksdict.WriteOptions.memtable_insert_hint_per_batch", "modulename": "rocksdict", "qualname": "WriteOptions.memtable_insert_hint_per_batch", "kind": "variable", "doc": "If true, writebatch will maintain the last insert positions of each\nmemtable as hints in concurrent write. It can improve write performance\nin concurrent writes if keys in one writebatch are sequential. In\nnon-concurrent writes (when concurrent_memtable_writes is false) this\noption will be ignored.
\n\nDefault: false
\n"}, {"fullname": "rocksdict.Snapshot", "modulename": "rocksdict", "qualname": "Snapshot", "kind": "class", "doc": "A consistent view of the database at the point of creation.
\n\nExamples:
\n\n\n\n"}, {"fullname": "rocksdict.Snapshot.__init__", "modulename": "rocksdict", "qualname": "Snapshot.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.Snapshot.iter", "modulename": "rocksdict", "qualname": "Snapshot.iter", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict\n\ndb = Rdict(\"tmp\")\nfor i in range(100):\n db[i] = i\n\n# take a snapshot\nsnapshot = db.snapshot()\n\nfor i in range(90):\n del db[i]\n\n# 0-89 are no longer in db\nfor k, v in db.items():\n print(f\"{k} -> {v}\")\n\n# but they are still in the snapshot\nfor i in range(100):\n assert snapshot[i] == i\n\n# drop the snapshot\ndel snapshot, db\n\nRdict.destroy(\"tmp\")\n
Creates an iterator over the data in this snapshot under the given column family, using\nthe default read options.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Snapshot.items", "modulename": "rocksdict", "qualname": "Snapshot.items", "kind": "function", "doc": "- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all keys and values pairs.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Snapshot.keys", "modulename": "rocksdict", "qualname": "Snapshot.keys", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all keys.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.Snapshot.values", "modulename": "rocksdict", "qualname": "Snapshot.values", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Iterate through all values.
\n\nArguments:
\n\n\n
\n", "signature": "(self, /, backwards=False, from_key=None, read_opt=None):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter", "modulename": "rocksdict", "qualname": "RdictIter", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.RdictIter.__init__", "modulename": "rocksdict", "qualname": "RdictIter.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.RdictIter.valid", "modulename": "rocksdict", "qualname": "RdictIter.valid", "kind": "function", "doc": "- backwards: iteration direction, forward if
\nFalse
.- from_key: iterate from key, first seek to this key\nor the nearest next key for iteration\n(depending on iteration direction).
\n- read_opt: ReadOptions, must have the same
\nraw_mode
argument.Returns
\n\ntrue
if the iterator is valid. An iterator is invalidated when\nit reaches the end of its defined range, or when it encounters an error.To check whether the iterator encountered an error after
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.status", "modulename": "rocksdict", "qualname": "RdictIter.status", "kind": "function", "doc": "valid
has\nreturnedfalse
, use thestatus
method.status
will never\nreturn an error whenvalid
istrue
.Returns an error
\n\nResult
if the iterator has encountered an error\nduring operation. When an error is encountered, the iterator is\ninvalidated andvalid
will returnfalse
when called.Performing a seek will discard the current status.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.seek_to_first", "modulename": "rocksdict", "qualname": "RdictIter.seek_to_first", "kind": "function", "doc": "Seeks to the first key in the database.
\n\nExample:
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.seek_to_last", "modulename": "rocksdict", "qualname": "RdictIter.seek_to_last", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage5\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Iterate all keys from the start in lexicographic order\niter.seek_to_first()\n\nwhile iter.valid():\n print(f\"{iter.key()} {iter.value()}\")\n iter.next()\n\n# Read just the first key\niter.seek_to_first();\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the last key in the database.
\n\nExample:
\n\n\n\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.seek", "modulename": "rocksdict", "qualname": "RdictIter.seek", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Iterate all keys from the start in lexicographic order\niter.seek_to_last()\n\nwhile iter.valid():\n print(f\"{iter.key()} {iter.value()}\")\n iter.prev()\n\n# Read just the last key\niter.seek_to_last();\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the specified key or the first key that lexicographically follows it.
\n\nThis method will attempt to seek to the specified key. If that key does not exist, it will\nfind and seek to the key that lexicographically follows it instead.
\n\nExample:
\n\n\n\n", "signature": "(self, /, key):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.seek_for_prev", "modulename": "rocksdict", "qualname": "RdictIter.seek_for_prev", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Read the first string key that starts with 'a'\niter.seek(\"a\");\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the specified key, or the first key that lexicographically precedes it.
\n\nLike
\n\n.seek()
this method will attempt to seek to the specified key.\nThe difference with.seek()
is that if the specified key do not exist, this method will\nseek to key that lexicographically precedes it instead.Example:
\n\n\n\n", "signature": "(self, /, key):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.next", "modulename": "rocksdict", "qualname": "RdictIter.next", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Rdict, Options, ReadOptions\n\npath = \"_path_for_rocksdb_storage6\"\ndb = Rdict(path, Options())\niter = db.iter(ReadOptions())\n\n# Read the last key that starts with 'a'\nseek_for_prev(\"b\")\nprint(f\"{iter.key()} {iter.value()}\")\n\ndel iter, db\nRdict.destroy(path, Options())\n
Seeks to the next key.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.prev", "modulename": "rocksdict", "qualname": "RdictIter.prev", "kind": "function", "doc": "Seeks to the previous key.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.key", "modulename": "rocksdict", "qualname": "RdictIter.key", "kind": "function", "doc": "Returns the current key.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.RdictIter.value", "modulename": "rocksdict", "qualname": "RdictIter.value", "kind": "function", "doc": "Returns the current value.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Options", "modulename": "rocksdict", "qualname": "Options", "kind": "class", "doc": "Database-wide options around performance and behavior.
\n\nPlease read the official tuning guide\nand most importantly, measure performance under realistic workloads with realistic hardware.
\n\nExample:
\n\n\n\n\n::
\n\n\nfrom rocksdict import Options, Rdict, DBCompactionStyle\n\ndef badly_tuned_for_somebody_elses_disk():\n\n path = \"path/for/rocksdb/storageX\"\n\n opts = Options()\n opts.create_if_missing(true)\n opts.set_max_open_files(10000)\n opts.set_use_fsync(false)\n opts.set_bytes_per_sync(8388608)\n opts.optimize_for_point_lookup(1024)\n opts.set_table_cache_num_shard_bits(6)\n opts.set_max_write_buffer_number(32)\n opts.set_write_buffer_size(536870912)\n opts.set_target_file_size_base(1073741824)\n opts.set_min_write_buffer_number_to_merge(4)\n opts.set_level_zero_stop_writes_trigger(2000)\n opts.set_level_zero_slowdown_writes_trigger(0)\n opts.set_compaction_style(DBCompactionStyle.universal())\n opts.set_disable_auto_compactions(true)\n\n return Rdict(path, opts)\n
Arguments:
\n\n\n
\n"}, {"fullname": "rocksdict.Options.__init__", "modulename": "rocksdict", "qualname": "Options.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.Options.load_latest", "modulename": "rocksdict", "qualname": "Options.load_latest", "kind": "function", "doc": "- raw_mode (bool): set this to True to operate in raw mode (i.e.\nit will only allow bytes as key-value pairs, and is compatible\nwith other RockDB database).
\nLoad latest options from the rocksdb path
\n\nReturns a tuple, where the first item is
\n", "signature": "(path, env=Ellipsis, ignore_unknown_options=False, cache=Ellipsis):", "funcdef": "def"}, {"fullname": "rocksdict.Options.increase_parallelism", "modulename": "rocksdict", "qualname": "Options.increase_parallelism", "kind": "function", "doc": "Options
\nand the second item is aDict
of column families.By default, RocksDB uses only one background thread for flush and\ncompaction. Calling this function will set it up such that total of\n
\n", "signature": "(self, /, parallelism):", "funcdef": "def"}, {"fullname": "rocksdict.Options.optimize_level_style_compaction", "modulename": "rocksdict", "qualname": "Options.optimize_level_style_compaction", "kind": "function", "doc": "total_threads
is used. Good value fortotal_threads
is the number of\ncores. You almost definitely want to call this function if your system is\nbottlenecked by RocksDB.Optimize level style compaction.
\n\nDefault values for some parameters in
\n\nOptions
are not optimized for heavy\nworkloads and big datasets, which means you might observe write stalls under\nsome conditions.This can be used as one of the starting points for tuning RocksDB options in\nsuch cases.
\n\nInternally, it sets
\n\nwrite_buffer_size
,min_write_buffer_number_to_merge
,\nmax_write_buffer_number
,level0_file_num_compaction_trigger
,\ntarget_file_size_base
,max_bytes_for_level_base
, so it can override if those\nparameters were set before.It sets buffer sizes so that memory consumption would be constrained by\n
\n", "signature": "(self, /, memtable_memory_budget):", "funcdef": "def"}, {"fullname": "rocksdict.Options.optimize_universal_style_compaction", "modulename": "rocksdict", "qualname": "Options.optimize_universal_style_compaction", "kind": "function", "doc": "memtable_memory_budget
.Optimize universal style compaction.
\n\nDefault values for some parameters in
\n\nOptions
are not optimized for heavy\nworkloads and big datasets, which means you might observe write stalls under\nsome conditions.This can be used as one of the starting points for tuning RocksDB options in\nsuch cases.
\n\nInternally, it sets
\n\nwrite_buffer_size
,min_write_buffer_number_to_merge
,\nmax_write_buffer_number
,level0_file_num_compaction_trigger
,\ntarget_file_size_base
,max_bytes_for_level_base
, so it can override if those\nparameters were set before.It sets buffer sizes so that memory consumption would be constrained by\n
\n", "signature": "(self, /, memtable_memory_budget):", "funcdef": "def"}, {"fullname": "rocksdict.Options.create_if_missing", "modulename": "rocksdict", "qualname": "Options.create_if_missing", "kind": "function", "doc": "memtable_memory_budget
.If true, any column families that didn't exist when opening the database\nwill be created.
\n\nDefault:
\n", "signature": "(self, /, create_if_missing):", "funcdef": "def"}, {"fullname": "rocksdict.Options.create_missing_column_families", "modulename": "rocksdict", "qualname": "Options.create_missing_column_families", "kind": "function", "doc": "true
If true, any column families that didn't exist when opening the database\nwill be created.
\n\nDefault:
\n", "signature": "(self, /, create_missing_cfs):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_error_if_exists", "modulename": "rocksdict", "qualname": "Options.set_error_if_exists", "kind": "function", "doc": "false
Specifies whether an error should be raised if the database already exists.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_paranoid_checks", "modulename": "rocksdict", "qualname": "Options.set_paranoid_checks", "kind": "function", "doc": "Enable/disable paranoid checks.
\n\nIf true, the implementation will do aggressive checking of the\ndata it is processing and will stop early if it detects any\nerrors. This may have unforeseen ramifications: for example, a\ncorruption of one DB entry may cause a large number of entries to\nbecome unreadable or for the entire DB to become unopenable.\nIf any of the writes to the database fails (Put, Delete, Merge, Write),\nthe database will switch to read-only mode and fail all other\nWrite operations.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_db_paths", "modulename": "rocksdict", "qualname": "Options.set_db_paths", "kind": "function", "doc": "A list of paths where SST files can be put into, with its target size.\nNewer data is placed into paths specified earlier in the vector while\nolder data gradually moves to paths specified later in the vector.
\n\nFor example, you have a flash device with 10GB allocated for the DB,\nas well as a hard drive of 2TB, you should config it to be:\n [{\"/flash_path\", 10GB}, {\"/hard_drive\", 2TB}]
\n\nThe system will try to guarantee data under each path is close to but\nnot larger than the target size. But current and future file sizes used\nby determining where to place a file are based on best-effort estimation,\nwhich means there is a chance that the actual size under the directory\nis slightly more than target size under some workloads. User should give\nsome buffer room for those cases.
\n\nIf none of the paths has sufficient room to place a file, the file will\nbe placed to the last path anyway, despite to the target size.
\n\nPlacing newer data to earlier paths is also best-efforts. User should\nexpect user files to be placed in higher levels in some extreme cases.
\n\nIf left empty, only one path will be used, which is
\n\npath
passed when\nopening the DB.Default: empty
\n\n\n", "signature": "(self, /, paths):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_env", "modulename": "rocksdict", "qualname": "Options.set_env", "kind": "function", "doc": "from rocksdict import Options, DBPath\n\nopt = Options()\nflash_path = DBPath(\"/flash_path\", 10 * 1024 * 1024 * 1024) # 10 GB\nhard_drive = DBPath(\"/hard_drive\", 2 * 1024 * 1024 * 1024 * 1024) # 2 TB\nopt.set_db_paths([flash_path, hard_drive])\n
Use the specified object to interact with the environment,\ne.g. to read/write files, schedule background work, etc. In the near\nfuture, support for doing storage operations such as read/write files\nthrough env will be deprecated in favor of file_system.
\n", "signature": "(self, /, env):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_compression_type", "modulename": "rocksdict", "qualname": "Options.set_compression_type", "kind": "function", "doc": "Sets the compression algorithm that will be used for compressing blocks.
\n\nDefault:
\n\nDBCompressionType::Snappy
(DBCompressionType::None
if\nsnappy feature is not enabled).Example:
\n\n\n\n", "signature": "(self, /, t):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_compression_per_level", "modulename": "rocksdict", "qualname": "Options.set_compression_per_level", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options, DBCompressionType\n\nopts = Options()\nopts.set_compression_type(DBCompressionType.snappy())\n
Different levels can have different compression policies. There\nare cases where most lower levels would like to use quick compression\nalgorithms while the higher levels (which have more data) use\ncompression algorithms that have better compression but could\nbe slower. This array, if non-empty, should have an entry for\neach level of the database; these override the value specified in\nthe previous field 'compression'.
\n\nExample:
\n\n\n\n", "signature": "(self, /, level_types):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_compression_options", "modulename": "rocksdict", "qualname": "Options.set_compression_options", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options, DBCompressionType\n\nopts = Options()\nopts.set_compression_per_level([\n DBCompressionType.none(),\n DBCompressionType.none(),\n DBCompressionType.snappy(),\n DBCompressionType.snappy(),\n DBCompressionType.snappy()\n])\n
Maximum size of dictionaries used to prime the compression library.\nEnabling dictionary can improve compression ratios when there are\nrepetitions across data blocks.
\n\nThe dictionary is created by sampling the SST file data. If\n
\n\nzstd_max_train_bytes
is nonzero, the samples are passed through zstd's\ndictionary generator. Otherwise, the random samples are used directly as\nthe dictionary.When compression dictionary is disabled, we compress and write each block\nbefore buffering data for the next one. When compression dictionary is\nenabled, we buffer all SST file data in-memory so we can sample it, as data\ncan only be compressed and written after the dictionary has been finalized.\nSo users of this feature may see increased memory usage.
\n\nDefault:
\n", "signature": "(self, /, w_bits, level, strategy, max_dict_bytes):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_zstd_max_train_bytes", "modulename": "rocksdict", "qualname": "Options.set_zstd_max_train_bytes", "kind": "function", "doc": "0
Sets maximum size of training data passed to zstd's dictionary trainer. Using zstd's\ndictionary trainer can achieve even better compression ratio improvements than using\n
\n\nmax_dict_bytes
alone.The training data will be used to generate a dictionary of max_dict_bytes.
\n\nDefault: 0.
\n", "signature": "(self, /, value):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_compaction_readahead_size", "modulename": "rocksdict", "qualname": "Options.set_compaction_readahead_size", "kind": "function", "doc": "If non-zero, we perform bigger reads when doing compaction. If you're\nrunning RocksDB on spinning disks, you should set this to at least 2MB.\nThat way RocksDB's compaction is doing sequential instead of random reads.
\n\nWhen non-zero, we also force new_table_reader_for_compaction_inputs to\ntrue.
\n\nDefault:
\n", "signature": "(self, /, compaction_readahead_size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_level_compaction_dynamic_level_bytes", "modulename": "rocksdict", "qualname": "Options.set_level_compaction_dynamic_level_bytes", "kind": "function", "doc": "0
Allow RocksDB to pick dynamic base of bytes for levels.\nWith this feature turned on, RocksDB will automatically adjust max bytes for each level.\nThe goal of this feature is to have lower bound on size amplification.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_prefix_extractor", "modulename": "rocksdict", "qualname": "Options.set_prefix_extractor", "kind": "function", "doc": "\n", "signature": "(self, /, prefix_extractor):", "funcdef": "def"}, {"fullname": "rocksdict.Options.optimize_for_point_lookup", "modulename": "rocksdict", "qualname": "Options.optimize_for_point_lookup", "kind": "function", "doc": "\n", "signature": "(self, /, cache_size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_optimize_filters_for_hits", "modulename": "rocksdict", "qualname": "Options.set_optimize_filters_for_hits", "kind": "function", "doc": "Sets the optimize_filters_for_hits flag
\n\nDefault:
\n", "signature": "(self, /, optimize_for_hits):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_delete_obsolete_files_period_micros", "modulename": "rocksdict", "qualname": "Options.set_delete_obsolete_files_period_micros", "kind": "function", "doc": "false
Sets the periodicity when obsolete files get deleted.
\n\nThe files that get out of scope by compaction\nprocess will still get automatically delete on every compaction,\nregardless of this setting.
\n\nDefault: 6 hours
\n", "signature": "(self, /, micros):", "funcdef": "def"}, {"fullname": "rocksdict.Options.prepare_for_bulk_load", "modulename": "rocksdict", "qualname": "Options.prepare_for_bulk_load", "kind": "function", "doc": "Prepare the DB for bulk loading.
\n\nAll data will be in level 0 without any automatic compaction.\nIt's recommended to manually call CompactRange(NULL, NULL) before reading\nfrom the database, because otherwise the read can be very slow.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_open_files", "modulename": "rocksdict", "qualname": "Options.set_max_open_files", "kind": "function", "doc": "Sets the number of open files that can be used by the DB. You may need to\nincrease this if your database has a large working set. Value
\n\n-1
means\nfiles opened are always kept open. You can estimate number of files based\non target_file_size_base and target_file_size_multiplier for level-based\ncompaction. For universal-style compaction, you can usually set it to-1
.Default:
\n", "signature": "(self, /, nfiles):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_file_opening_threads", "modulename": "rocksdict", "qualname": "Options.set_max_file_opening_threads", "kind": "function", "doc": "-1
If max_open_files is -1, DB will open all files on DB::Open(). You can\nuse this option to increase the number of threads used to open the files.\nDefault: 16
\n", "signature": "(self, /, nthreads):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_use_fsync", "modulename": "rocksdict", "qualname": "Options.set_use_fsync", "kind": "function", "doc": "If true, then every store to stable storage will issue a fsync.\nIf false, then every store to stable storage will issue a fdatasync.\nThis parameter should be set to true while storing data to\nfilesystem like ext3 that can lose files after a reboot.
\n\nDefault:
\n", "signature": "(self, /, useit):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_db_log_dir", "modulename": "rocksdict", "qualname": "Options.set_db_log_dir", "kind": "function", "doc": "false
Specifies the absolute info LOG dir.
\n\nIf it is empty, the log files will be in the same dir as data.\nIf it is non empty, the log files will be in the specified dir,\nand the db data dir's absolute path will be used as the log file\nname's prefix.
\n\nDefault: empty
\n", "signature": "(self, /, path):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_bytes_per_sync", "modulename": "rocksdict", "qualname": "Options.set_bytes_per_sync", "kind": "function", "doc": "Allows OS to incrementally sync files to disk while they are being\nwritten, asynchronously, in the background. This operation can be used\nto smooth out write I/Os over time. Users shouldn't rely on it for\npersistency guarantee.\nIssue one request for every bytes_per_sync written.
\n\n0
turns it off.Default:
\n\n0
You may consider using rate_limiter to regulate write rate to device.\nWhen rate limiter is enabled, it automatically enables bytes_per_sync\nto 1MB.
\n\nThis option applies to table files
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_wal_bytes_per_sync", "modulename": "rocksdict", "qualname": "Options.set_wal_bytes_per_sync", "kind": "function", "doc": "Same as bytes_per_sync, but applies to WAL files.
\n\nDefault: 0, turned off
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_writable_file_max_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_writable_file_max_buffer_size", "kind": "function", "doc": "Sets the maximum buffer size that is used by WritableFileWriter.
\n\nOn Windows, we need to maintain an aligned buffer for writes.\nWe allow the buffer to grow until it's size hits the limit in buffered\nIO and fix the buffer size when using direct IO to ensure alignment of\nwrite requests if the logical sector size is unusual
\n\nDefault: 1024 * 1024 (1 MB)
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_allow_concurrent_memtable_write", "modulename": "rocksdict", "qualname": "Options.set_allow_concurrent_memtable_write", "kind": "function", "doc": "If true, allow multi-writers to update mem tables in parallel.\nOnly some memtable_factory-s support concurrent writes; currently it\nis implemented only for SkipListFactory. Concurrent memtable writes\nare not compatible with inplace_update_support or filter_deletes.\nIt is strongly recommended to set enable_write_thread_adaptive_yield\nif you are going to use this feature.
\n\nDefault: true
\n", "signature": "(self, /, allow):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_enable_write_thread_adaptive_yield", "modulename": "rocksdict", "qualname": "Options.set_enable_write_thread_adaptive_yield", "kind": "function", "doc": "If true, threads synchronizing with the write batch group leader will wait for up to\nwrite_thread_max_yield_usec before blocking on a mutex. This can substantially improve\nthroughput for concurrent workloads, regardless of whether allow_concurrent_memtable_write\nis enabled.
\n\nDefault: true
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_sequential_skip_in_iterations", "modulename": "rocksdict", "qualname": "Options.set_max_sequential_skip_in_iterations", "kind": "function", "doc": "Specifies whether an iteration->Next() sequentially skips over keys with the same user-key or not.
\n\nThis number specifies the number of keys (with the same userkey)\nthat will be sequentially skipped before a reseek is issued.
\n\nDefault: 8
\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_use_direct_reads", "modulename": "rocksdict", "qualname": "Options.set_use_direct_reads", "kind": "function", "doc": "Enable direct I/O mode for reading\nthey may or may not improve performance depending on the use case
\n\nFiles will be opened in \"direct I/O\" mode\nwhich means that data read from the disk will not be cached or\nbuffered. The hardware buffer of the devices may however still\nbe used. Memory mapped files are not impacted by these parameters.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_use_direct_io_for_flush_and_compaction", "modulename": "rocksdict", "qualname": "Options.set_use_direct_io_for_flush_and_compaction", "kind": "function", "doc": "Enable direct I/O mode for flush and compaction
\n\nFiles will be opened in \"direct I/O\" mode\nwhich means that data written to the disk will not be cached or\nbuffered. The hardware buffer of the devices may however still\nbe used. Memory mapped files are not impacted by these parameters.\nthey may or may not improve performance depending on the use case
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_is_fd_close_on_exec", "modulename": "rocksdict", "qualname": "Options.set_is_fd_close_on_exec", "kind": "function", "doc": "Enable/dsiable child process inherit open files.
\n\nDefault: true
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_table_cache_num_shard_bits", "modulename": "rocksdict", "qualname": "Options.set_table_cache_num_shard_bits", "kind": "function", "doc": "Sets the number of shards used for table cache.
\n\nDefault:
\n", "signature": "(self, /, nbits):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_target_file_size_multiplier", "modulename": "rocksdict", "qualname": "Options.set_target_file_size_multiplier", "kind": "function", "doc": "6
By default target_file_size_multiplier is 1, which means\nby default files in different levels will have similar size.
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, multiplier):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_min_write_buffer_number", "modulename": "rocksdict", "qualname": "Options.set_min_write_buffer_number", "kind": "function", "doc": "Sets the minimum number of write buffers that will be merged together\nbefore writing to storage. If set to
\n\n1
, then\nall write buffers are flushed to L0 as individual files and this increases\nread amplification because a get request has to check in all of these\nfiles. Also, an in-memory merge may result in writing lesser\ndata to storage if there are duplicate records in each of these\nindividual write buffers.Default:
\n", "signature": "(self, /, nbuf):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_write_buffer_number", "modulename": "rocksdict", "qualname": "Options.set_max_write_buffer_number", "kind": "function", "doc": "1
Sets the maximum number of write buffers that are built up in memory.\nThe default and the minimum number is 2, so that when 1 write buffer\nis being flushed to storage, new writes can continue to the other\nwrite buffer.\nIf max_write_buffer_number > 3, writing will be slowed down to\noptions.delayed_write_rate if we are writing to the last write buffer\nallowed.
\n\nDefault:
\n", "signature": "(self, /, nbuf):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_write_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_write_buffer_size", "kind": "function", "doc": "2
Sets the amount of data to build up in memory (backed by an unsorted log\non disk) before converting to a sorted on-disk file.
\n\nLarger values increase performance, especially during bulk loads.\nUp to max_write_buffer_number write buffers may be held in memory\nat the same time,\nso you may wish to adjust this parameter to control memory usage.\nAlso, a larger write buffer will result in a longer recovery time\nthe next time the database is opened.
\n\nNote that write_buffer_size is enforced per column family.\nSee db_write_buffer_size for sharing memory across column families.
\n\nDefault:
\n\n0x4000000
(64MiB)Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_db_write_buffer_size", "modulename": "rocksdict", "qualname": "Options.set_db_write_buffer_size", "kind": "function", "doc": "Amount of data to build up in memtables across all column\nfamilies before writing to disk.
\n\nThis is distinct from write_buffer_size, which enforces a limit\nfor a single memtable.
\n\nThis feature is disabled by default. Specify a non-zero value\nto enable it.
\n\nDefault: 0 (disabled)
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_bytes_for_level_base", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_base", "kind": "function", "doc": "Control maximum total data size for a level.\nmax_bytes_for_level_base is the max total for level-1.\nMaximum number of bytes for level L can be calculated as\n(max_bytes_for_level_base) * (max_bytes_for_level_multiplier ^ (L-1))\nFor example, if max_bytes_for_level_base is 200MB, and if\nmax_bytes_for_level_multiplier is 10, total data size for level-1\nwill be 200MB, total file size for level-2 will be 2GB,\nand total file size for level-3 will be 20GB.
\n\nDefault:
\n\n0x10000000
(256MiB).Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_bytes_for_level_multiplier", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_multiplier", "kind": "function", "doc": "Default:
\n", "signature": "(self, /, mul):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_manifest_file_size", "modulename": "rocksdict", "qualname": "Options.set_max_manifest_file_size", "kind": "function", "doc": "10
The manifest file is rolled over on reaching this limit.\nThe older manifest file be deleted.\nThe default value is MAX_INT so that roll-over does not take place.
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_target_file_size_base", "modulename": "rocksdict", "qualname": "Options.set_target_file_size_base", "kind": "function", "doc": "Sets the target file size for compaction.\ntarget_file_size_base is per-file size for level-1.\nTarget file size for level L can be calculated by\ntarget_file_size_base * (target_file_size_multiplier ^ (L-1))\nFor example, if target_file_size_base is 2MB and\ntarget_file_size_multiplier is 10, then each file on level-1 will\nbe 2MB, and each file on level 2 will be 20MB,\nand each file on level-3 will be 200MB.
\n\nDefault:
\n\n0x4000000
(64MiB)Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_min_write_buffer_number_to_merge", "modulename": "rocksdict", "qualname": "Options.set_min_write_buffer_number_to_merge", "kind": "function", "doc": "Sets the minimum number of write buffers that will be merged together\nbefore writing to storage. If set to
\n\n1
, then\nall write buffers are flushed to L0 as individual files and this increases\nread amplification because a get request has to check in all of these\nfiles. Also, an in-memory merge may result in writing lesser\ndata to storage if there are duplicate records in each of these\nindividual write buffers.Default:
\n", "signature": "(self, /, to_merge):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_level_zero_file_num_compaction_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_file_num_compaction_trigger", "kind": "function", "doc": "1
Sets the number of files to trigger level-0 compaction. A value <
\n\n0
means that\nlevel-0 compaction will not be triggered by number of files at all.Default:
\n\n4
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_level_zero_slowdown_writes_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_slowdown_writes_trigger", "kind": "function", "doc": "Sets the soft limit on number of level-0 files. We start slowing down writes at this\npoint. A value <
\n\n0
means that no writing slow down will be triggered by\nnumber of files in level-0.Default:
\n\n20
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_level_zero_stop_writes_trigger", "modulename": "rocksdict", "qualname": "Options.set_level_zero_stop_writes_trigger", "kind": "function", "doc": "Sets the maximum number of level-0 files. We stop writes at this point.
\n\nDefault:
\n\n24
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_compaction_style", "modulename": "rocksdict", "qualname": "Options.set_compaction_style", "kind": "function", "doc": "Sets the compaction style.
\n\nDefault: DBCompactionStyle.level()
\n", "signature": "(self, /, style):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_universal_compaction_options", "modulename": "rocksdict", "qualname": "Options.set_universal_compaction_options", "kind": "function", "doc": "Sets the options needed to support Universal Style compactions.
\n", "signature": "(self, /, uco):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_fifo_compaction_options", "modulename": "rocksdict", "qualname": "Options.set_fifo_compaction_options", "kind": "function", "doc": "Sets the options for FIFO compaction style.
\n", "signature": "(self, /, fco):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_unordered_write", "modulename": "rocksdict", "qualname": "Options.set_unordered_write", "kind": "function", "doc": "Sets unordered_write to true trades higher write throughput with\nrelaxing the immutability guarantee of snapshots. This violates the\nrepeatability one expects from ::Get from a snapshot, as well as\n:MultiGet and Iterator's consistent-point-in-time view property.\nIf the application cannot tolerate the relaxed guarantees, it can implement\nits own mechanisms to work around that and yet benefit from the higher\nthroughput. Using TransactionDB with WRITE_PREPARED write policy and\ntwo_write_queues=true is one way to achieve immutable snapshots despite\nunordered_write.
\n\nBy default, i.e., when it is false, rocksdb does not advance the sequence\nnumber for new snapshots unless all the writes with lower sequence numbers\nare already finished. This provides the immutability that we except from\nsnapshots. Moreover, since Iterator and MultiGet internally depend on\nsnapshots, the snapshot immutability results into Iterator and MultiGet\noffering consistent-point-in-time view. If set to true, although\nRead-Your-Own-Write property is still provided, the snapshot immutability\nproperty is relaxed: the writes issued after the snapshot is obtained (with\nlarger sequence numbers) will be still not visible to the reads from that\nsnapshot, however, there still might be pending writes (with lower sequence\nnumber) that will change the state visible to the snapshot after they are\nlanded to the memtable.
\n\nDefault: false
\n", "signature": "(self, /, unordered):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_subcompactions", "modulename": "rocksdict", "qualname": "Options.set_max_subcompactions", "kind": "function", "doc": "Sets maximum number of threads that will\nconcurrently perform a compaction job by breaking it into multiple,\nsmaller ones that are run simultaneously.
\n\nDefault: 1 (i.e. no subcompactions)
\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_background_jobs", "modulename": "rocksdict", "qualname": "Options.set_max_background_jobs", "kind": "function", "doc": "Sets maximum number of concurrent background jobs\n(compactions and flushes).
\n\nDefault: 2
\n\nDynamically changeable through SetDBOptions() API.
\n", "signature": "(self, /, jobs):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_disable_auto_compactions", "modulename": "rocksdict", "qualname": "Options.set_disable_auto_compactions", "kind": "function", "doc": "Disables automatic compactions. Manual compactions can still\nbe issued on this column family
\n\nDefault:
\n\nfalse
Dynamically changeable through SetOptions() API
\n", "signature": "(self, /, disable):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_memtable_huge_page_size", "modulename": "rocksdict", "qualname": "Options.set_memtable_huge_page_size", "kind": "function", "doc": "SetMemtableHugePageSize sets the page size for huge page for\narena used by the memtable.\nIf <=0, it won't allocate from huge page but from malloc.\nUsers are responsible to reserve huge pages for it to be allocated. For\nexample:\n sysctl -w vm.nr_hugepages=20\nSee linux doc Documentation/vm/hugetlbpage.txt\nIf there isn't enough free huge page available, it will fall back to\nmalloc.
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_successive_merges", "modulename": "rocksdict", "qualname": "Options.set_max_successive_merges", "kind": "function", "doc": "Sets the maximum number of successive merge operations on a key in the memtable.
\n\nWhen a merge operation is added to the memtable and the maximum number of\nsuccessive merges is reached, the value of the key will be calculated and\ninserted into the memtable instead of the merge operation. This will\nensure that there are never more than max_successive_merges merge\noperations in the memtable.
\n\nDefault: 0 (disabled)
\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_bloom_locality", "modulename": "rocksdict", "qualname": "Options.set_bloom_locality", "kind": "function", "doc": "Control locality of bloom filter probes to improve cache miss rate.\nThis option only applies to memtable prefix bloom and plaintable\nprefix bloom. It essentially limits the max number of cache lines each\nbloom filter check can touch.
\n\nThis optimization is turned off when set to 0. The number should never\nbe greater than number of probes. This option can boost performance\nfor in-memory workload but should use with care since it can cause\nhigher false positive rate.
\n\nDefault: 0
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_inplace_update_support", "modulename": "rocksdict", "qualname": "Options.set_inplace_update_support", "kind": "function", "doc": "Enable/disable thread-safe inplace updates.
\n\nRequires updates if
\n\n\n
\n\n- key exists in current memtable
\n- new sizeof(new_value) <= sizeof(old_value)
\n- old_value for that key is a put i.e. kTypeValue
\nDefault: false.
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_inplace_update_locks", "modulename": "rocksdict", "qualname": "Options.set_inplace_update_locks", "kind": "function", "doc": "Sets the number of locks used for inplace update.
\n\nDefault: 10000 when inplace_update_support = true, otherwise 0.
\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_bytes_for_level_multiplier_additional", "modulename": "rocksdict", "qualname": "Options.set_max_bytes_for_level_multiplier_additional", "kind": "function", "doc": "Different max-size multipliers for different levels.\nThese are multiplied by max_bytes_for_level_multiplier to arrive\nat the max-size of each level.
\n\nDefault: 1
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, level_values):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_skip_checking_sst_file_sizes_on_db_open", "modulename": "rocksdict", "qualname": "Options.set_skip_checking_sst_file_sizes_on_db_open", "kind": "function", "doc": "If true, then DB::Open() will not fetch and check sizes of all sst files.\nThis may significantly speed up startup if there are many sst files,\nespecially when using non-default Env with expensive GetFileSize().\nWe'll still check that all required sst files exist.\nIf paranoid_checks is false, this option is ignored, and sst files are\nnot checked at all.
\n\nDefault: false
\n", "signature": "(self, /, value):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_write_buffer_size_to_maintain", "modulename": "rocksdict", "qualname": "Options.set_max_write_buffer_size_to_maintain", "kind": "function", "doc": "The total maximum size(bytes) of write buffers to maintain in memory\nincluding copies of buffers that have already been flushed. This parameter\nonly affects trimming of flushed buffers and does not affect flushing.\nThis controls the maximum amount of write history that will be available\nin memory for conflict checking when Transactions are used. The actual\nsize of write history (flushed Memtables) might be higher than this limit\nif further trimming will reduce write history total size below this\nlimit. For example, if max_write_buffer_size_to_maintain is set to 64MB,\nand there are three flushed Memtables, with sizes of 32MB, 20MB, 20MB.\nBecause trimming the next Memtable of size 20MB will reduce total memory\nusage to 52MB which is below the limit, RocksDB will stop trimming.
\n\nWhen using an OptimisticTransactionDB:\nIf this value is too low, some transactions may fail at commit time due\nto not being able to determine whether there were any write conflicts.
\n\nWhen using a TransactionDB:\nIf Transaction::SetSnapshot is used, TransactionDB will read either\nin-memory write buffers or SST files to do write-conflict checking.\nIncreasing this value can reduce the number of reads to SST files\ndone for conflict detection.
\n\nSetting this value to 0 will cause write buffers to be freed immediately\nafter they are flushed. If this value is set to -1,\n'max_write_buffer_number * write_buffer_size' will be used.
\n\nDefault:\nIf using a TransactionDB/OptimisticTransactionDB, the default value will\nbe set to the value of 'max_write_buffer_number * write_buffer_size'\nif it is not explicitly set by the user. Otherwise, the default is 0.
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_enable_pipelined_write", "modulename": "rocksdict", "qualname": "Options.set_enable_pipelined_write", "kind": "function", "doc": "By default, a single write thread queue is maintained. The thread gets\nto the head of the queue becomes write batch group leader and responsible\nfor writing to WAL and memtable for the batch group.
\n\nIf enable_pipelined_write is true, separate write thread queue is\nmaintained for WAL write and memtable write. A write thread first enter WAL\nwriter queue and then memtable writer queue. Pending thread on the WAL\nwriter queue thus only have to wait for previous writers to finish their\nWAL writing but not the memtable writing. Enabling the feature may improve\nwrite throughput and reduce latency of the prepare phase of two-phase\ncommit.
\n\nDefault: false
\n", "signature": "(self, /, value):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_memtable_factory", "modulename": "rocksdict", "qualname": "Options.set_memtable_factory", "kind": "function", "doc": "Defines the underlying memtable implementation.\nSee official wiki for more information.\nDefaults to using a skiplist.
\n\nExample:
\n\n\n\n", "signature": "(self, /, factory):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_block_based_table_factory", "modulename": "rocksdict", "qualname": "Options.set_block_based_table_factory", "kind": "function", "doc": "\n", "signature": "(self, /, factory):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_cuckoo_table_factory", "modulename": "rocksdict", "qualname": "Options.set_cuckoo_table_factory", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options, MemtableFactory\nopts = Options()\nfactory = MemtableFactory.hash_skip_list(bucket_count=1_000_000,\n height=4,\n branching_factor=4)\n\nopts.set_allow_concurrent_memtable_write(false)\nopts.set_memtable_factory(factory)\n
Sets the table factory to a CuckooTableFactory (the default table\nfactory is a block-based table factory that provides a default\nimplementation of TableBuilder and TableReader with default\nBlockBasedTableOptions).\nSee official wiki for more information on this table format.
\n\nExample:
\n\n\n\n", "signature": "(self, /, factory):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_plain_table_factory", "modulename": "rocksdict", "qualname": "Options.set_plain_table_factory", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options, CuckooTableOptions\n\nopts = Options()\nfactory_opts = CuckooTableOptions()\nfactory_opts.set_hash_ratio(0.8)\nfactory_opts.set_max_search_depth(20)\nfactory_opts.set_cuckoo_block_size(10)\nfactory_opts.set_identity_as_first_hash(true)\nfactory_opts.set_use_module_hash(false)\n\nopts.set_cuckoo_table_factory(factory_opts)\n
This is a factory that provides TableFactory objects.\nDefault: a block-based table factory that provides a default\nimplementation of TableBuilder and TableReader with default\nBlockBasedTableOptions.\nSets the factory as plain table.\nSee official wiki for more\ninformation.
\n\nExample:
\n\n\n\n", "signature": "(self, /, options):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_min_level_to_compress", "modulename": "rocksdict", "qualname": "Options.set_min_level_to_compress", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options, PlainTableFactoryOptions\n\nopts = Options()\nfactory_opts = PlainTableFactoryOptions()\nfactory_opts.user_key_length = 0\nfactory_opts.bloom_bits_per_key = 20\nfactory_opts.hash_table_ratio = 0.75\nfactory_opts.index_sparseness = 16\n\nopts.set_plain_table_factory(factory_opts)\n
Sets the start level to use compression.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_report_bg_io_stats", "modulename": "rocksdict", "qualname": "Options.set_report_bg_io_stats", "kind": "function", "doc": "Measure IO stats in compactions and flushes, if
\n\ntrue
.Default:
\n", "signature": "(self, /, enable):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_total_wal_size", "modulename": "rocksdict", "qualname": "Options.set_max_total_wal_size", "kind": "function", "doc": "false
Once write-ahead logs exceed this size, we will start forcing the flush of\ncolumn families whose memtables are backed by the oldest live WAL file\n(i.e. the ones that are causing all the space amplification).
\n\nDefault:
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_wal_recovery_mode", "modulename": "rocksdict", "qualname": "Options.set_wal_recovery_mode", "kind": "function", "doc": "0
Recovery mode to control the consistency while replaying WAL.
\n\nDefault: DBRecoveryMode::PointInTime
\n", "signature": "(self, /, mode):", "funcdef": "def"}, {"fullname": "rocksdict.Options.enable_statistics", "modulename": "rocksdict", "qualname": "Options.enable_statistics", "kind": "function", "doc": "\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Options.get_statistics", "modulename": "rocksdict", "qualname": "Options.get_statistics", "kind": "function", "doc": "\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_stats_dump_period_sec", "modulename": "rocksdict", "qualname": "Options.set_stats_dump_period_sec", "kind": "function", "doc": "If not zero, dump
\n\nrocksdb.stats
to LOG everystats_dump_period_sec
.Default:
\n", "signature": "(self, /, period):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_stats_persist_period_sec", "modulename": "rocksdict", "qualname": "Options.set_stats_persist_period_sec", "kind": "function", "doc": "600
(10 mins)If not zero, dump rocksdb.stats to RocksDB to LOG every
\n\nstats_persist_period_sec
.Default:
\n", "signature": "(self, /, period):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_advise_random_on_open", "modulename": "rocksdict", "qualname": "Options.set_advise_random_on_open", "kind": "function", "doc": "600
(10 mins)When set to true, reading SST files will opt out of the filesystem's\nreadahead. Setting this to false may improve sequential iteration\nperformance.
\n\nDefault:
\n", "signature": "(self, /, advise):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_use_adaptive_mutex", "modulename": "rocksdict", "qualname": "Options.set_use_adaptive_mutex", "kind": "function", "doc": "true
Enable/disable adaptive mutex, which spins in the user space before resorting to kernel.
\n\nThis could reduce context switch when the mutex is not\nheavily contended. However, if the mutex is hot, we could end up\nwasting spin time.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_num_levels", "modulename": "rocksdict", "qualname": "Options.set_num_levels", "kind": "function", "doc": "Sets the number of levels for this database.
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_memtable_prefix_bloom_ratio", "modulename": "rocksdict", "qualname": "Options.set_memtable_prefix_bloom_ratio", "kind": "function", "doc": "When a
\n\nprefix_extractor
is defined throughopts.set_prefix_extractor
this\ncreates a prefix bloom filter for each memtable with the size of\nwrite_buffer_size * memtable_prefix_bloom_ratio
(capped at 0.25).Default:
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_compaction_bytes", "modulename": "rocksdict", "qualname": "Options.set_max_compaction_bytes", "kind": "function", "doc": "0
Sets the maximum number of bytes in all compacted files.\nWe try to limit number of bytes in one compaction to be lower than this\nthreshold. But it's not guaranteed.
\n\nValue 0 will be sanitized.
\n\nDefault: target_file_size_base * 25
\n", "signature": "(self, /, nbytes):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_wal_dir", "modulename": "rocksdict", "qualname": "Options.set_wal_dir", "kind": "function", "doc": "Specifies the absolute path of the directory the\nwrite-ahead log (WAL) should be written to.
\n\nDefault: same directory as the database
\n", "signature": "(self, /, path):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_wal_ttl_seconds", "modulename": "rocksdict", "qualname": "Options.set_wal_ttl_seconds", "kind": "function", "doc": "Sets the WAL ttl in seconds.
\n\nThe following two options affect how archived logs will be deleted.
\n\n\n
\n\n- If both set to 0, logs will be deleted asap and will not get into\nthe archive.
\n- If wal_ttl_seconds is 0 and wal_size_limit_mb is not 0,\nWAL files will be checked every 10 min and if total size is greater\nthen wal_size_limit_mb, they will be deleted starting with the\nearliest until size_limit is met. All empty files will be deleted.
\n- If wal_ttl_seconds is not 0 and wall_size_limit_mb is 0, then\nWAL files will be checked every wal_ttl_seconds / 2 and those that\nare older than wal_ttl_seconds will be deleted.
\n- If both are not 0, WAL files will be checked every 10 min and both\nchecks will be performed with ttl being first.
\nDefault: 0
\n", "signature": "(self, /, secs):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_wal_size_limit_mb", "modulename": "rocksdict", "qualname": "Options.set_wal_size_limit_mb", "kind": "function", "doc": "Sets the WAL size limit in MB.
\n\nIf total size of WAL files is greater then wal_size_limit_mb,\nthey will be deleted starting with the earliest until size_limit is met.
\n\nDefault: 0
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_manifest_preallocation_size", "modulename": "rocksdict", "qualname": "Options.set_manifest_preallocation_size", "kind": "function", "doc": "Sets the number of bytes to preallocate (via fallocate) the manifest files.
\n\nDefault is 4MB, which is reasonable to reduce random IO\nas well as prevent overallocation for mounts that preallocate\nlarge amounts of data (such as xfs's allocsize option).
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_skip_stats_update_on_db_open", "modulename": "rocksdict", "qualname": "Options.set_skip_stats_update_on_db_open", "kind": "function", "doc": "If true, then DB::Open() will not update the statistics used to optimize\ncompaction decision by loading table properties from many files.\nTurning off this feature will improve DBOpen time especially in disk environment.
\n\nDefault: false
\n", "signature": "(self, /, skip):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_keep_log_file_num", "modulename": "rocksdict", "qualname": "Options.set_keep_log_file_num", "kind": "function", "doc": "Specify the maximal number of info log files to be kept.
\n\nDefault: 1000
\n", "signature": "(self, /, nfiles):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_allow_mmap_writes", "modulename": "rocksdict", "qualname": "Options.set_allow_mmap_writes", "kind": "function", "doc": "Allow the OS to mmap file for writing.
\n\nDefault: false
\n", "signature": "(self, /, is_enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_allow_mmap_reads", "modulename": "rocksdict", "qualname": "Options.set_allow_mmap_reads", "kind": "function", "doc": "Allow the OS to mmap file for reading sst tables.
\n\nDefault: false
\n", "signature": "(self, /, is_enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_atomic_flush", "modulename": "rocksdict", "qualname": "Options.set_atomic_flush", "kind": "function", "doc": "Guarantee that all column families are flushed together atomically.\nThis option applies to both manual flushes (
\n\ndb.flush()
) and automatic\nbackground flushes caused when memtables are filled.Note that this is only useful when the WAL is disabled. When using the\nWAL, writes are always consistent across column families.
\n\nDefault: false
\n", "signature": "(self, /, atomic_flush):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_row_cache", "modulename": "rocksdict", "qualname": "Options.set_row_cache", "kind": "function", "doc": "Sets global cache for table-level rows. Cache must outlive DB instance which uses it.
\n\nDefault: null (disabled)\nNot supported in ROCKSDB_LITE mode!
\n", "signature": "(self, /, cache):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_ratelimiter", "modulename": "rocksdict", "qualname": "Options.set_ratelimiter", "kind": "function", "doc": "Use to control write rate of flush and compaction. Flush has higher\npriority than compaction.\nIf rate limiter is enabled, bytes_per_sync is set to 1MB by default.
\n\nDefault: disable
\n", "signature": "(self, /, rate_bytes_per_sec, refill_period_us, fairness):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_max_log_file_size", "modulename": "rocksdict", "qualname": "Options.set_max_log_file_size", "kind": "function", "doc": "Sets the maximal size of the info log file.
\n\nIf the log file is larger than
\n\nmax_log_file_size
, a new info log file\nwill be created. Ifmax_log_file_size
is equal to zero, all logs will\nbe written to one log file.Default: 0
\n\nExample:
\n\n\n\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_log_file_time_to_roll", "modulename": "rocksdict", "qualname": "Options.set_log_file_time_to_roll", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options\n\noptions = Options()\noptions.set_max_log_file_size(0)\n
Sets the time for the info log file to roll (in seconds).
\n\nIf specified with non-zero value, log file will be rolled\nif it has been active longer than
\n", "signature": "(self, /, secs):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_recycle_log_file_num", "modulename": "rocksdict", "qualname": "Options.set_recycle_log_file_num", "kind": "function", "doc": "log_file_time_to_roll
.\nDefault: 0 (disabled)Controls the recycling of log files.
\n\nIf non-zero, previously written log files will be reused for new logs,\noverwriting the old data. The value indicates how many such files we will\nkeep around at any point in time for later use. This is more efficient\nbecause the blocks are already allocated and fdatasync does not need to\nupdate the inode after each write.
\n\nDefault: 0
\n\nExample:
\n\n\n\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_soft_pending_compaction_bytes_limit", "modulename": "rocksdict", "qualname": "Options.set_soft_pending_compaction_bytes_limit", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import Options\n\noptions = Options()\noptions.set_recycle_log_file_num(5)\n
Sets the threshold at which all writes will be slowed down to at least delayed_write_rate if estimated\nbytes needed to be compaction exceed this threshold.
\n\nDefault: 64GB
\n", "signature": "(self, /, limit):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_hard_pending_compaction_bytes_limit", "modulename": "rocksdict", "qualname": "Options.set_hard_pending_compaction_bytes_limit", "kind": "function", "doc": "Sets the bytes threshold at which all writes are stopped if estimated bytes needed to be compaction exceed\nthis threshold.
\n\nDefault: 256GB
\n", "signature": "(self, /, limit):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_arena_block_size", "modulename": "rocksdict", "qualname": "Options.set_arena_block_size", "kind": "function", "doc": "Sets the size of one block in arena memory allocation.
\n\nIf <= 0, a proper value is automatically calculated (usually 1/10 of\nwriter_buffer_size).
\n\nDefault: 0
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_dump_malloc_stats", "modulename": "rocksdict", "qualname": "Options.set_dump_malloc_stats", "kind": "function", "doc": "If true, then print malloc stats together with rocksdb.stats when printing to LOG.
\n\nDefault: false
\n", "signature": "(self, /, enabled):", "funcdef": "def"}, {"fullname": "rocksdict.Options.set_memtable_whole_key_filtering", "modulename": "rocksdict", "qualname": "Options.set_memtable_whole_key_filtering", "kind": "function", "doc": "Enable whole key bloom filter in memtable. Note this will only take effect\nif memtable_prefix_bloom_size_ratio is not 0. Enabling whole key filtering\ncan potentially reduce CPU usage for point-look-ups.
\n\nDefault: false (disable)
\n\nDynamically changeable through SetOptions() API
\n", "signature": "(self, /, whole_key_filter):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions", "modulename": "rocksdict", "qualname": "ReadOptions", "kind": "class", "doc": "ReadOptions allows setting iterator bounds and so on.
\n\nArguments:
\n\n\n
\n"}, {"fullname": "rocksdict.ReadOptions.__init__", "modulename": "rocksdict", "qualname": "ReadOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.ReadOptions.fill_cache", "modulename": "rocksdict", "qualname": "ReadOptions.fill_cache", "kind": "function", "doc": "- raw_mode (bool): this must be the same as
\nOptions
raw_mode\nargument.Specify whether the \"data block\"/\"index block\"/\"filter block\"\nread for this iteration should be cached in memory?\nCallers may wish to set this field to false for bulk scans.
\n\nDefault: true
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_iterate_upper_bound", "modulename": "rocksdict", "qualname": "ReadOptions.set_iterate_upper_bound", "kind": "function", "doc": "Sets the upper bound for an iterator.
\n", "signature": "(self, /, key):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_iterate_lower_bound", "modulename": "rocksdict", "qualname": "ReadOptions.set_iterate_lower_bound", "kind": "function", "doc": "Sets the lower bound for an iterator.
\n", "signature": "(self, /, key):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_prefix_same_as_start", "modulename": "rocksdict", "qualname": "ReadOptions.set_prefix_same_as_start", "kind": "function", "doc": "Enforce that the iterator only iterates over the same\nprefix as the seek.\nThis option is effective only for prefix seeks, i.e. prefix_extractor is\nnon-null for the column family and total_order_seek is false. Unlike\niterate_upper_bound, prefix_same_as_start only works within a prefix\nbut in both directions.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_total_order_seek", "modulename": "rocksdict", "qualname": "ReadOptions.set_total_order_seek", "kind": "function", "doc": "Enable a total order seek regardless of index format (e.g. hash index)\nused in the table. Some table format (e.g. plain table) may not support\nthis option.
\n\nIf true when calling Get(), we also skip prefix bloom when reading from\nblock based table. It provides a way to read existing data after\nchanging implementation of prefix extractor.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_max_skippable_internal_keys", "modulename": "rocksdict", "qualname": "ReadOptions.set_max_skippable_internal_keys", "kind": "function", "doc": "Sets a threshold for the number of keys that can be skipped\nbefore failing an iterator seek as incomplete. The default value of 0 should be used to\nnever fail a request as incomplete, even on skipping too many keys.
\n\nDefault: 0
\n", "signature": "(self, /, num):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_background_purge_on_iterator_cleanup", "modulename": "rocksdict", "qualname": "ReadOptions.set_background_purge_on_iterator_cleanup", "kind": "function", "doc": "If true, when PurgeObsoleteFile is called in CleanupIteratorState, we schedule a background job\nin the flush job queue and delete obsolete files in background.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_ignore_range_deletions", "modulename": "rocksdict", "qualname": "ReadOptions.set_ignore_range_deletions", "kind": "function", "doc": "If true, keys deleted using the DeleteRange() API will be visible to\nreaders until they are naturally deleted during compaction. This improves\nread performance in DBs with many range deletions.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_verify_checksums", "modulename": "rocksdict", "qualname": "ReadOptions.set_verify_checksums", "kind": "function", "doc": "If true, all data read from underlying storage will be\nverified against corresponding checksums.
\n\nDefault: true
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_readahead_size", "modulename": "rocksdict", "qualname": "ReadOptions.set_readahead_size", "kind": "function", "doc": "If non-zero, an iterator will create a new table reader which\nperforms reads of the given size. Using a large size (> 2MB) can\nimprove the performance of forward iteration on spinning disks.\nDefault: 0
\n\nfrom rocksdict import ReadOptions
\n\nopts = ReadOptions()\nopts.set_readahead_size(4_194_304) # 4mb
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_tailing", "modulename": "rocksdict", "qualname": "ReadOptions.set_tailing", "kind": "function", "doc": "If true, create a tailing iterator. Note that tailing iterators\nonly support moving in the forward direction. Iterating in reverse\nor seek_to_last are not supported.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_pin_data", "modulename": "rocksdict", "qualname": "ReadOptions.set_pin_data", "kind": "function", "doc": "Specifies the value of \"pin_data\". If true, it keeps the blocks\nloaded by the iterator pinned in memory as long as the iterator is not deleted,\nIf used when reading from tables created with\nBlockBasedTableOptions::use_delta_encoding = false,\nIterator's property \"rocksdb.iterator.is-key-pinned\" is guaranteed to\nreturn 1.
\n\nDefault: false
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ReadOptions.set_async_io", "modulename": "rocksdict", "qualname": "ReadOptions.set_async_io", "kind": "function", "doc": "Asynchronously prefetch some data.
\n\nUsed for sequential reads and internal automatic prefetching.
\n\nDefault:
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.ColumnFamily", "modulename": "rocksdict", "qualname": "ColumnFamily", "kind": "class", "doc": "false
Column family handle. This can be used in WriteBatch to specify Column Family.
\n"}, {"fullname": "rocksdict.ColumnFamily.__init__", "modulename": "rocksdict", "qualname": "ColumnFamily.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.IngestExternalFileOptions", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.IngestExternalFileOptions.__init__", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.IngestExternalFileOptions.set_move_files", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_move_files", "kind": "function", "doc": "Can be set to true to move the files instead of copying them.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.IngestExternalFileOptions.set_snapshot_consistency", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_snapshot_consistency", "kind": "function", "doc": "If set to false, an ingested file keys could appear in existing snapshots\nthat where created before the file was ingested.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.IngestExternalFileOptions.set_allow_global_seqno", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_allow_global_seqno", "kind": "function", "doc": "If set to false, IngestExternalFile() will fail if the file key range\noverlaps with existing keys or tombstones in the DB.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.IngestExternalFileOptions.set_allow_blocking_flush", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_allow_blocking_flush", "kind": "function", "doc": "If set to false and the file key range overlaps with the memtable key range\n(memtable flush required), IngestExternalFile will fail.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.IngestExternalFileOptions.set_ingest_behind", "modulename": "rocksdict", "qualname": "IngestExternalFileOptions.set_ingest_behind", "kind": "function", "doc": "Set to true if you would like duplicate keys in the file being ingested\nto be skipped rather than overwriting existing data under that key.\nUsecase: back-fill of some historical data in the database without\nover-writing existing newer version of data.\nThis option could only be used if the DB has been running\nwith allow_ingest_behind=true since the dawn of time.\nAll files will be ingested at the bottommost level with seqno=0.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.DBPath", "modulename": "rocksdict", "qualname": "DBPath", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.DBPath.__init__", "modulename": "rocksdict", "qualname": "DBPath.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.MemtableFactory", "modulename": "rocksdict", "qualname": "MemtableFactory", "kind": "class", "doc": "Defines the underlying memtable implementation.\nSee official wiki for more information.
\n"}, {"fullname": "rocksdict.MemtableFactory.__init__", "modulename": "rocksdict", "qualname": "MemtableFactory.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.MemtableFactory.vector", "modulename": "rocksdict", "qualname": "MemtableFactory.vector", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.MemtableFactory.hash_skip_list", "modulename": "rocksdict", "qualname": "MemtableFactory.hash_skip_list", "kind": "function", "doc": "\n", "signature": "(bucket_count, height, branching_factor):", "funcdef": "def"}, {"fullname": "rocksdict.MemtableFactory.hash_link_list", "modulename": "rocksdict", "qualname": "MemtableFactory.hash_link_list", "kind": "function", "doc": "\n", "signature": "(bucket_count):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions", "modulename": "rocksdict", "qualname": "BlockBasedOptions", "kind": "class", "doc": "For configuring block-based file storage.
\n"}, {"fullname": "rocksdict.BlockBasedOptions.__init__", "modulename": "rocksdict", "qualname": "BlockBasedOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.BlockBasedOptions.set_block_size", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_size", "kind": "function", "doc": "Approximate size of user data packed per block. Note that the\nblock size specified here corresponds to uncompressed data. The\nactual size of the unit read from disk may be smaller if\ncompression is enabled. This parameter can be changed dynamically.
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_metadata_block_size", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_metadata_block_size", "kind": "function", "doc": "Block size for partitioned metadata. Currently applied to indexes when\nkTwoLevelIndexSearch is used and to filters when partition_filters is used.\nNote: Since in the current implementation the filters and index partitions\nare aligned, an index/filter block is created when either index or filter\nblock size reaches the specified limit.
\n\nNote: this limit is currently applied to only index blocks; a filter\npartition is cut right after an index block is cut.
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_partition_filters", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_partition_filters", "kind": "function", "doc": "Note: currently this option requires kTwoLevelIndexSearch to be set as\nwell.
\n\nUse partitioned full filters for each SST file. This option is\nincompatible with block-based filters.
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_block_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_cache", "kind": "function", "doc": "Sets global cache for blocks (user data is stored in a set of blocks, and\na block is the unit of reading from disk). Cache must outlive DB instance which uses it.
\n\nIf set, use the specified cache for blocks.\nBy default, rocksdb will automatically create and use an 8MB internal cache.
\n", "signature": "(self, /, cache):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.disable_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.disable_cache", "kind": "function", "doc": "Disable block cache
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_bloom_filter", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_bloom_filter", "kind": "function", "doc": "Sets the filter policy to reduce disk read
\n", "signature": "(self, /, bits_per_key, block_based):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_cache_index_and_filter_blocks", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_cache_index_and_filter_blocks", "kind": "function", "doc": "\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_index_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_index_type", "kind": "function", "doc": "Defines the index type to be used for SS-table lookups.
\n\nExample:
\n\n\n\n", "signature": "(self, /, index_type):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_pin_l0_filter_and_index_blocks_in_cache", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import BlockBasedOptions, BlockBasedIndexType, Options\n\nopts = Options()\nblock_opts = BlockBasedOptions()\nblock_opts.set_index_type(BlockBasedIndexType.hash_search())\nopts.set_block_based_table_factory(block_opts)\n
If cache_index_and_filter_blocks is true and the below is true, then\nfilter and index blocks are stored in the cache, but a reference is\nheld in the \"table reader\" object so the blocks are pinned and only\nevicted from cache when the table reader is freed.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_pin_top_level_index_and_filter", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_pin_top_level_index_and_filter", "kind": "function", "doc": "If cache_index_and_filter_blocks is true and the below is true, then\nthe top-level index of partitioned filter and index blocks are stored in\nthe cache, but a reference is held in the \"table reader\" object so the\nblocks are pinned and only evicted from cache when the table reader is\nfreed. This is not limited to l0 in LSM tree.
\n\nDefault: false.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_format_version", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_format_version", "kind": "function", "doc": "Format version, reserved for backward compatibility.
\n\nSee full list\nof the supported versions.
\n\nDefault: 2.
\n", "signature": "(self, /, version):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_block_restart_interval", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_block_restart_interval", "kind": "function", "doc": "Number of keys between restart points for delta encoding of keys.\nThis parameter can be changed dynamically. Most clients should\nleave this parameter alone. The minimum value allowed is 1. Any smaller\nvalue will be silently overwritten with 1.
\n\nDefault: 16.
\n", "signature": "(self, /, interval):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_index_block_restart_interval", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_index_block_restart_interval", "kind": "function", "doc": "Same as block_restart_interval but used for the index block.\nIf you don't plan to run RocksDB before version 5.16 and you are\nusing
\n\nindex_block_restart_interval
> 1, you should\nprobably set theformat_version
to >= 4 as it would reduce the index size.Default: 1.
\n", "signature": "(self, /, interval):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_data_block_index_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_data_block_index_type", "kind": "function", "doc": "Set the data block index type for point lookups:
\n\n\n\n\n\n
DataBlockIndexType::BinarySearch
to use binary search within the data block.\nDataBlockIndexType::BinaryAndHash
to use the data block hash index in combination with\n the normal binary search.The hash table utilization ratio is adjustable using
\n\nset_data_block_hash_ratio
, which is\nvalid only when usingDataBlockIndexType::BinaryAndHash
.Default:
\n\nBinarySearch
Example:
\n\n\n\n", "signature": "(self, /, index_type):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_data_block_hash_ratio", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_data_block_hash_ratio", "kind": "function", "doc": "::
\n\n\nfrom rocksdict import BlockBasedOptions, BlockBasedIndexType, Options\n\nopts = Options()\nblock_opts = BlockBasedOptions()\nblock_opts.set_data_block_index_type(DataBlockIndexType.binary_and_hash())\nblock_opts.set_data_block_hash_ratio(0.85)\nopts.set_block_based_table_factory(block_opts)\n
Set the data block hash index utilization ratio.
\n\nThe smaller the utilization ratio, the less hash collisions happen, and so reduce the risk for a\npoint lookup to fall back to binary search due to the collisions. A small ratio means faster\nlookup at the price of more space overhead.
\n\nDefault: 0.75
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedOptions.set_checksum_type", "modulename": "rocksdict", "qualname": "BlockBasedOptions.set_checksum_type", "kind": "function", "doc": "Use the specified checksum type.\nNewly created table files will be protected with this checksum type.\nOld table files will still be readable, even though they have different checksum type.
\n", "signature": "(self, /, checksum_type):", "funcdef": "def"}, {"fullname": "rocksdict.PlainTableFactoryOptions", "modulename": "rocksdict", "qualname": "PlainTableFactoryOptions", "kind": "class", "doc": "Used with DBOptions::set_plain_table_factory.\nSee official wiki for more\ninformation.
\n\nDefaults:
\n\n\n\n"}, {"fullname": "rocksdict.PlainTableFactoryOptions.__init__", "modulename": "rocksdict", "qualname": "PlainTableFactoryOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.CuckooTableOptions", "modulename": "rocksdict", "qualname": "CuckooTableOptions", "kind": "class", "doc": "user_key_length: 0 (variable length)\n bloom_bits_per_key: 10\n hash_table_ratio: 0.75\n index_sparseness: 16
\nConfiguration of cuckoo-based storage.
\n"}, {"fullname": "rocksdict.CuckooTableOptions.__init__", "modulename": "rocksdict", "qualname": "CuckooTableOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.CuckooTableOptions.set_hash_ratio", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_hash_ratio", "kind": "function", "doc": "Determines the utilization of hash tables. Smaller values\nresult in larger hash tables with fewer collisions.\nDefault: 0.9
\n", "signature": "(self, /, ratio):", "funcdef": "def"}, {"fullname": "rocksdict.CuckooTableOptions.set_max_search_depth", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_max_search_depth", "kind": "function", "doc": "A property used by builder to determine the depth to go to\nto search for a path to displace elements in case of\ncollision. See Builder.MakeSpaceForKey method. Higher\nvalues result in more efficient hash tables with fewer\nlookups but take more time to build.\nDefault: 100
\n", "signature": "(self, /, depth):", "funcdef": "def"}, {"fullname": "rocksdict.CuckooTableOptions.set_cuckoo_block_size", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_cuckoo_block_size", "kind": "function", "doc": "In case of collision while inserting, the builder\nattempts to insert in the next cuckoo_block_size\nlocations before skipping over to the next Cuckoo hash\nfunction. This makes lookups more cache friendly in case\nof collisions.\nDefault: 5
\n", "signature": "(self, /, size):", "funcdef": "def"}, {"fullname": "rocksdict.CuckooTableOptions.set_identity_as_first_hash", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_identity_as_first_hash", "kind": "function", "doc": "If this option is enabled, user key is treated as uint64_t and its value\nis used as hash value directly. This option changes builder's behavior.\nReader ignore this option and behave according to what specified in\ntable property.\nDefault: false
\n", "signature": "(self, /, flag):", "funcdef": "def"}, {"fullname": "rocksdict.CuckooTableOptions.set_use_module_hash", "modulename": "rocksdict", "qualname": "CuckooTableOptions.set_use_module_hash", "kind": "function", "doc": "If this option is set to true, module is used during hash calculation.\nThis often yields better space efficiency at the cost of performance.\nIf this option is set to false, # of entries in table is constrained to\nbe power of two, and bit and is used to calculate hash, which is faster in general.\nDefault: true
\n", "signature": "(self, /, flag):", "funcdef": "def"}, {"fullname": "rocksdict.UniversalCompactOptions", "modulename": "rocksdict", "qualname": "UniversalCompactOptions", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.UniversalCompactOptions.__init__", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.UniversalCompactOptions.max_size_amplification_percent", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.max_size_amplification_percent", "kind": "variable", "doc": "sets the size amplification.
\n\nIt is defined as the amount (in percentage) of\nadditional storage needed to store a single byte of data in the database.\nFor example, a size amplification of 2% means that a database that\ncontains 100 bytes of user-data may occupy upto 102 bytes of\nphysical storage. By this definition, a fully compacted database has\na size amplification of 0%. Rocksdb uses the following heuristic\nto calculate size amplification: it assumes that all files excluding\nthe earliest file contribute to the size amplification.
\n\nDefault: 200, which means that a 100 byte database could require upto 300 bytes of storage.
\n"}, {"fullname": "rocksdict.UniversalCompactOptions.compression_size_percent", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.compression_size_percent", "kind": "variable", "doc": "Sets the percentage of compression size.
\n\nIf this option is set to be -1, all the output files\nwill follow compression type specified.
\n\nIf this option is not negative, we will try to make sure compressed\nsize is just above this value. In normal cases, at least this percentage\nof data will be compressed.\nWhen we are compacting to a new file, here is the criteria whether\nit needs to be compressed: assuming here are the list of files sorted\nby generation time:\n A1...An B1...Bm C1...Ct\nwhere A1 is the newest and Ct is the oldest, and we are going to compact\nB1...Bm, we calculate the total size of all the files as total_size, as\nwell as the total size of C1...Ct as total_C, the compaction output file\nwill be compressed iff\n total_C / total_size < this percentage
\n\nDefault: -1
\n"}, {"fullname": "rocksdict.UniversalCompactOptions.size_ratio", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.size_ratio", "kind": "variable", "doc": "Sets the percentage flexibility while comparing file size.\nIf the candidate file(s) size is 1% smaller than the next file's size,\nthen include next file into this candidate set.
\n\nDefault: 1
\n"}, {"fullname": "rocksdict.UniversalCompactOptions.stop_style", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.stop_style", "kind": "variable", "doc": "Sets the algorithm used to stop picking files into a single compaction run.
\n\nDefault: ::Total
\n"}, {"fullname": "rocksdict.UniversalCompactOptions.max_merge_width", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.max_merge_width", "kind": "variable", "doc": "Sets the maximum number of files in a single compaction run.
\n\nDefault: UINT_MAX
\n"}, {"fullname": "rocksdict.UniversalCompactOptions.min_merge_width", "modulename": "rocksdict", "qualname": "UniversalCompactOptions.min_merge_width", "kind": "variable", "doc": "Sets the minimum number of files in a single compaction run.
\n\nDefault: 2
\n"}, {"fullname": "rocksdict.UniversalCompactionStopStyle", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.UniversalCompactionStopStyle.__init__", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.UniversalCompactionStopStyle.similar", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.similar", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.UniversalCompactionStopStyle.total", "modulename": "rocksdict", "qualname": "UniversalCompactionStopStyle.total", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.SliceTransform", "modulename": "rocksdict", "qualname": "SliceTransform", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.SliceTransform.__init__", "modulename": "rocksdict", "qualname": "SliceTransform.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.SliceTransform.create_fixed_prefix", "modulename": "rocksdict", "qualname": "SliceTransform.create_fixed_prefix", "kind": "function", "doc": "\n", "signature": "(len):", "funcdef": "def"}, {"fullname": "rocksdict.SliceTransform.create_max_len_prefix", "modulename": "rocksdict", "qualname": "SliceTransform.create_max_len_prefix", "kind": "function", "doc": "prefix max length at
\n", "signature": "(len):", "funcdef": "def"}, {"fullname": "rocksdict.SliceTransform.create_noop", "modulename": "rocksdict", "qualname": "SliceTransform.create_noop", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DataBlockIndexType", "modulename": "rocksdict", "qualname": "DataBlockIndexType", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.DataBlockIndexType.__init__", "modulename": "rocksdict", "qualname": "DataBlockIndexType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.DataBlockIndexType.binary_search", "modulename": "rocksdict", "qualname": "DataBlockIndexType.binary_search", "kind": "function", "doc": "len
. If key is longer thanlen
,\nthe prefix will have lengthlen
, if key is shorter thanlen
,\nthe prefix will have the same length aslen
.Use binary search when performing point lookup for keys in data blocks.\nThis is the default.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DataBlockIndexType.binary_and_hash", "modulename": "rocksdict", "qualname": "DataBlockIndexType.binary_and_hash", "kind": "function", "doc": "Appends a compact hash table to the end of the data block for efficient indexing. Backwards\ncompatible with databases created without this feature. Once turned on, existing data will\nbe gradually converted to the hash index format.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedIndexType", "modulename": "rocksdict", "qualname": "BlockBasedIndexType", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.BlockBasedIndexType.__init__", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.BlockBasedIndexType.binary_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.binary_search", "kind": "function", "doc": "A space efficient index block that is optimized for\nbinary-search-based index.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedIndexType.hash_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.hash_search", "kind": "function", "doc": "The hash index, if enabled, will perform a hash lookup if\na prefix extractor has been provided through Options::set_prefix_extractor.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BlockBasedIndexType.two_level_index_search", "modulename": "rocksdict", "qualname": "BlockBasedIndexType.two_level_index_search", "kind": "function", "doc": "A two-level index implementation. Both levels are binary search indexes.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.Cache", "modulename": "rocksdict", "qualname": "Cache", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.Cache.__init__", "modulename": "rocksdict", "qualname": "Cache.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.Cache.new_hyper_clock_cache", "modulename": "rocksdict", "qualname": "Cache.new_hyper_clock_cache", "kind": "function", "doc": "Creates a HyperClockCache with capacity in bytes.
\n\n\n\n
estimated_entry_charge
is an important tuning parameter. The optimal\nchoice at any given time is\n(cache.get_usage() - 64 * cache.get_table_address_count()) /\ncache.get_occupancy_count()
, or approximatelycache.get_usage() /\ncache.get_occupancy_count()
.However, the value cannot be changed dynamically, so as the cache\ncomposition changes at runtime, the following tradeoffs apply:
\n\n\n
\n\n- If the estimate is substantially too high (e.g., 25% higher),\nthe cache may have to evict entries to prevent load factors that\nwould dramatically affect lookup times.
\n- If the estimate is substantially too low (e.g., less than half),\nthen meta data space overhead is substantially higher.
\nThe latter is generally preferable, and picking the larger of\nblock size and meta data block size is a reasonable choice that\nerrs towards this side.
\n", "signature": "(capacity, estimated_entry_charge):", "funcdef": "def"}, {"fullname": "rocksdict.Cache.get_usage", "modulename": "rocksdict", "qualname": "Cache.get_usage", "kind": "function", "doc": "Returns the Cache memory usage
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Cache.get_pinned_usage", "modulename": "rocksdict", "qualname": "Cache.get_pinned_usage", "kind": "function", "doc": "Returns pinned memory usage
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Cache.set_capacity", "modulename": "rocksdict", "qualname": "Cache.set_capacity", "kind": "function", "doc": "Sets cache capacity
\n", "signature": "(self, /, capacity):", "funcdef": "def"}, {"fullname": "rocksdict.ChecksumType", "modulename": "rocksdict", "qualname": "ChecksumType", "kind": "class", "doc": "Used by BlockBasedOptions::set_checksum_type.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n"}, {"fullname": "rocksdict.ChecksumType.__init__", "modulename": "rocksdict", "qualname": "ChecksumType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.ChecksumType.no_checksum", "modulename": "rocksdict", "qualname": "ChecksumType.no_checksum", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.ChecksumType.crc32c", "modulename": "rocksdict", "qualname": "ChecksumType.crc32c", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.ChecksumType.xxhash", "modulename": "rocksdict", "qualname": "ChecksumType.xxhash", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.ChecksumType.xxhash64", "modulename": "rocksdict", "qualname": "ChecksumType.xxhash64", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.ChecksumType.xxh3", "modulename": "rocksdict", "qualname": "ChecksumType.xxh3", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompactionStyle", "modulename": "rocksdict", "qualname": "DBCompactionStyle", "kind": "class", "doc": "- NoChecksum
\n- CRC32c
\n- XXHash
\n- XXHash64
\n- XXH3
\nThis is to be treated as an enum.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- Level
\n- Universal
\n- Fifo
\nBelow is an example to set compaction style to Fifo.
\n\nExample:
\n\n\n\n"}, {"fullname": "rocksdict.DBCompactionStyle.__init__", "modulename": "rocksdict", "qualname": "DBCompactionStyle.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.DBCompactionStyle.level", "modulename": "rocksdict", "qualname": "DBCompactionStyle.level", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompactionStyle.universal", "modulename": "rocksdict", "qualname": "DBCompactionStyle.universal", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompactionStyle.fifo", "modulename": "rocksdict", "qualname": "DBCompactionStyle.fifo", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType", "modulename": "rocksdict", "qualname": "DBCompressionType", "kind": "class", "doc": "::
\n\n\nopt = Options()\nopt.set_compaction_style(DBCompactionStyle.fifo())\n
This is to be treated as an enum.
\n\nCall the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- None
\n- Snappy
\n- Zlib
\n- Bz2
\n- Lz4
\n- Lz4hc
\n- Zstd
\nBelow is an example to set compression type to Snappy.
\n\nExample:
\n\n\n\n"}, {"fullname": "rocksdict.DBCompressionType.__init__", "modulename": "rocksdict", "qualname": "DBCompressionType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.DBCompressionType.none", "modulename": "rocksdict", "qualname": "DBCompressionType.none", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.snappy", "modulename": "rocksdict", "qualname": "DBCompressionType.snappy", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.zlib", "modulename": "rocksdict", "qualname": "DBCompressionType.zlib", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.bz2", "modulename": "rocksdict", "qualname": "DBCompressionType.bz2", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.lz4", "modulename": "rocksdict", "qualname": "DBCompressionType.lz4", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.lz4hc", "modulename": "rocksdict", "qualname": "DBCompressionType.lz4hc", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBCompressionType.zstd", "modulename": "rocksdict", "qualname": "DBCompressionType.zstd", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBRecoveryMode", "modulename": "rocksdict", "qualname": "DBRecoveryMode", "kind": "class", "doc": "::
\n\n\nopt = Options()\nopt.set_compression_type(DBCompressionType.snappy())\n
This is to be treated as an enum.
\n\nCalling the corresponding functions of each\nto get one of the following.
\n\n\n
\n\n- TolerateCorruptedTailRecords
\n- AbsoluteConsistency
\n- PointInTime
\n- SkipAnyCorruptedRecord
\nBelow is an example to set recovery mode to PointInTime.
\n\nExample:
\n\n\n\n"}, {"fullname": "rocksdict.DBRecoveryMode.__init__", "modulename": "rocksdict", "qualname": "DBRecoveryMode.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.DBRecoveryMode.tolerate_corrupted_tail_records", "modulename": "rocksdict", "qualname": "DBRecoveryMode.tolerate_corrupted_tail_records", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBRecoveryMode.absolute_consistency", "modulename": "rocksdict", "qualname": "DBRecoveryMode.absolute_consistency", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBRecoveryMode.point_in_time", "modulename": "rocksdict", "qualname": "DBRecoveryMode.point_in_time", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.DBRecoveryMode.skip_any_corrupted_record", "modulename": "rocksdict", "qualname": "DBRecoveryMode.skip_any_corrupted_record", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.Env", "modulename": "rocksdict", "qualname": "Env", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.Env.__init__", "modulename": "rocksdict", "qualname": "Env.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.Env.mem_env", "modulename": "rocksdict", "qualname": "Env.mem_env", "kind": "function", "doc": "::
\n\n\nopt = Options()\nopt.set_wal_recovery_mode(DBRecoveryMode.point_in_time())\n
Returns a new environment that stores its data in memory and delegates\nall non-file-storage tasks to base_env.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.Env.set_background_threads", "modulename": "rocksdict", "qualname": "Env.set_background_threads", "kind": "function", "doc": "Sets the number of background worker threads of a specific thread pool for this environment.\n
\n\nLOW
is the default pool.Default: 1
\n", "signature": "(self, /, num_threads):", "funcdef": "def"}, {"fullname": "rocksdict.Env.set_high_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_high_priority_background_threads", "kind": "function", "doc": "Sets the size of the high priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Env.set_low_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_low_priority_background_threads", "kind": "function", "doc": "Sets the size of the low priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Env.set_bottom_priority_background_threads", "modulename": "rocksdict", "qualname": "Env.set_bottom_priority_background_threads", "kind": "function", "doc": "Sets the size of the bottom priority thread pool that can be used to\nprevent compactions from stalling memtable flushes.
\n", "signature": "(self, /, n):", "funcdef": "def"}, {"fullname": "rocksdict.Env.join_all_threads", "modulename": "rocksdict", "qualname": "Env.join_all_threads", "kind": "function", "doc": "Wait for all threads started by StartThread to terminate.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Env.lower_thread_pool_io_priority", "modulename": "rocksdict", "qualname": "Env.lower_thread_pool_io_priority", "kind": "function", "doc": "Lowering IO priority for threads from the specified pool.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Env.lower_high_priority_thread_pool_io_priority", "modulename": "rocksdict", "qualname": "Env.lower_high_priority_thread_pool_io_priority", "kind": "function", "doc": "Lowering IO priority for high priority thread pool.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Env.lower_thread_pool_cpu_priority", "modulename": "rocksdict", "qualname": "Env.lower_thread_pool_cpu_priority", "kind": "function", "doc": "Lowering CPU priority for threads from the specified pool.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.Env.lower_high_priority_thread_pool_cpu_priority", "modulename": "rocksdict", "qualname": "Env.lower_high_priority_thread_pool_cpu_priority", "kind": "function", "doc": "Lowering CPU priority for high priority thread pool.
\n", "signature": "(self, /):", "funcdef": "def"}, {"fullname": "rocksdict.FifoCompactOptions", "modulename": "rocksdict", "qualname": "FifoCompactOptions", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.FifoCompactOptions.__init__", "modulename": "rocksdict", "qualname": "FifoCompactOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.FifoCompactOptions.max_table_files_size", "modulename": "rocksdict", "qualname": "FifoCompactOptions.max_table_files_size", "kind": "variable", "doc": "Sets the max table file size.
\n\nOnce the total sum of table files reaches this, we will delete the oldest\ntable file
\n\nDefault: 1GB
\n"}, {"fullname": "rocksdict.CompactOptions", "modulename": "rocksdict", "qualname": "CompactOptions", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.CompactOptions.__init__", "modulename": "rocksdict", "qualname": "CompactOptions.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.CompactOptions.set_exclusive_manual_compaction", "modulename": "rocksdict", "qualname": "CompactOptions.set_exclusive_manual_compaction", "kind": "function", "doc": "If more than one thread calls manual compaction,\nonly one will actually schedule it while the other threads will simply wait\nfor the scheduled manual compaction to complete. If exclusive_manual_compaction\nis set to true, the call will disable scheduling of automatic compaction jobs\nand wait for existing automatic compaction jobs to finish.
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.CompactOptions.set_bottommost_level_compaction", "modulename": "rocksdict", "qualname": "CompactOptions.set_bottommost_level_compaction", "kind": "function", "doc": "Sets bottommost level compaction.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, {"fullname": "rocksdict.CompactOptions.set_change_level", "modulename": "rocksdict", "qualname": "CompactOptions.set_change_level", "kind": "function", "doc": "If true, compacted files will be moved to the minimum level capable\nof holding the data or given level (specified non-negative target_level).
\n", "signature": "(self, /, v):", "funcdef": "def"}, {"fullname": "rocksdict.CompactOptions.set_target_level", "modulename": "rocksdict", "qualname": "CompactOptions.set_target_level", "kind": "function", "doc": "If change_level is true and target_level have non-negative value, compacted\nfiles will be moved to target_level.
\n", "signature": "(self, /, lvl):", "funcdef": "def"}, {"fullname": "rocksdict.BottommostLevelCompaction", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction", "kind": "class", "doc": "\n"}, {"fullname": "rocksdict.BottommostLevelCompaction.__init__", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.BottommostLevelCompaction.skip", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.skip", "kind": "function", "doc": "Skip bottommost level compaction
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BottommostLevelCompaction.if_have_compaction_filter", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.if_have_compaction_filter", "kind": "function", "doc": "Only compact bottommost level if there is a compaction filter\nThis is the default option
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BottommostLevelCompaction.force", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.force", "kind": "function", "doc": "Always compact bottommost level
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.BottommostLevelCompaction.force_optimized", "modulename": "rocksdict", "qualname": "BottommostLevelCompaction.force_optimized", "kind": "function", "doc": "Always compact bottommost level but in bottommost level avoid\ndouble-compacting files created in the same compaction
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.KeyEncodingType", "modulename": "rocksdict", "qualname": "KeyEncodingType", "kind": "class", "doc": "Used in
\n"}, {"fullname": "rocksdict.KeyEncodingType.__init__", "modulename": "rocksdict", "qualname": "KeyEncodingType.__init__", "kind": "function", "doc": "\n", "signature": "()"}, {"fullname": "rocksdict.KeyEncodingType.plain", "modulename": "rocksdict", "qualname": "KeyEncodingType.plain", "kind": "function", "doc": "PlainTableFactoryOptions
.Always write full keys.
\n", "signature": "():", "funcdef": "def"}, {"fullname": "rocksdict.KeyEncodingType.prefix", "modulename": "rocksdict", "qualname": "KeyEncodingType.prefix", "kind": "function", "doc": "Find opportunities to write the same prefix for multiple rows.
\n", "signature": "():", "funcdef": "def"}]; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/src/lib.rs b/src/lib.rs index 69d8337..747212c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ use pyo3::prelude::*; /// /// ### Installation /// -/// This package is built for macOS (x86/arm), Windows 64/32, and Linux x86. +/// This package is built for macOS (x86/arm), Windows 64/32, and Linux x86/arm. /// It can be installed from pypi with `pip install rocksdict`. /// /// ## Introduction