@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 = true;
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 = true;
912
+ readOptions.async_io = false; // TODO (fix): enable
913
913
  readOptions.ignore_range_deletions = ignoreRangeDeletions;
914
- readOptions.optimize_multiget_for_io = true;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "8.2.1",
3
+ "version": "8.2.2",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
Binary file