@nxtedition/rocksdb 8.2.1 → 8.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/binding.cc
CHANGED
|
@@ -383,7 +383,7 @@ struct BaseIterator : public Closable {
|
|
|
383
383
|
}
|
|
384
384
|
readOptions.fill_cache = fillCache_;
|
|
385
385
|
readOptions.snapshot = snapshot_.get();
|
|
386
|
-
readOptions.async_io =
|
|
386
|
+
readOptions.async_io = false; // TODO (fix): enable
|
|
387
387
|
readOptions.adaptive_readahead = true;
|
|
388
388
|
readOptions.tailing = tailing_;
|
|
389
389
|
|
|
@@ -909,9 +909,9 @@ NAPI_METHOD(db_get_many) {
|
|
|
909
909
|
rocksdb::ReadOptions readOptions;
|
|
910
910
|
readOptions.fill_cache = fillCache;
|
|
911
911
|
readOptions.snapshot = snapshot.get();
|
|
912
|
-
readOptions.async_io =
|
|
912
|
+
readOptions.async_io = false; // TODO (fix): enable
|
|
913
913
|
readOptions.ignore_range_deletions = ignoreRangeDeletions;
|
|
914
|
-
readOptions.optimize_multiget_for_io =
|
|
914
|
+
readOptions.optimize_multiget_for_io = false; // TODO (fix): enable
|
|
915
915
|
|
|
916
916
|
const auto size = keys.size();
|
|
917
917
|
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|