@nxtedition/rocksdb 8.2.2 → 8.2.4
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 = true;
|
|
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 = true;
|
|
913
913
|
readOptions.ignore_range_deletions = ignoreRangeDeletions;
|
|
914
|
-
readOptions.optimize_multiget_for_io =
|
|
914
|
+
readOptions.optimize_multiget_for_io = true;
|
|
915
915
|
|
|
916
916
|
const auto size = keys.size();
|
|
917
917
|
|
package/binding.gyp
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"-Wno-ignored-qualifiers"
|
|
38
38
|
],
|
|
39
39
|
"OTHER_CPLUSPLUSFLAGS": [
|
|
40
|
-
"-mmacosx-version-min=
|
|
40
|
+
"-mmacosx-version-min=13.4.0",
|
|
41
41
|
"-std=c++20",
|
|
42
42
|
"-fno-omit-frame-pointer",
|
|
43
43
|
"-momit-leaf-frame-pointer",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"GCC_ENABLE_CPP_RTTI": "YES",
|
|
48
48
|
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
|
|
49
|
-
"MACOSX_DEPLOYMENT_TARGET": "
|
|
49
|
+
"MACOSX_DEPLOYMENT_TARGET": "13.4.0"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
]
|
package/deps/rocksdb/rocksdb.gyp
CHANGED
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
],
|
|
144
144
|
"xcode_settings": {
|
|
145
145
|
"OTHER_CPLUSPLUSFLAGS": [
|
|
146
|
-
"-mmacosx-version-min=
|
|
146
|
+
"-mmacosx-version-min=13.4.0",
|
|
147
147
|
"-std=c++20",
|
|
148
148
|
"-fno-omit-frame-pointer",
|
|
149
149
|
"-momit-leaf-frame-pointer",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
],
|
|
153
153
|
"GCC_ENABLE_CPP_RTTI": "YES",
|
|
154
154
|
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
|
|
155
|
-
"MACOSX_DEPLOYMENT_TARGET": "
|
|
155
|
+
"MACOSX_DEPLOYMENT_TARGET": "13.4.0"
|
|
156
156
|
},
|
|
157
157
|
}
|
|
158
158
|
]
|
|
@@ -389,6 +389,7 @@
|
|
|
389
389
|
"rocksdb/util/compression_context_cache.cc",
|
|
390
390
|
"rocksdb/util/concurrent_task_limiter_impl.cc",
|
|
391
391
|
"rocksdb/util/crc32c.cc",
|
|
392
|
+
"rocksdb/util/crc32c_arm64.cc",
|
|
392
393
|
"rocksdb/util/data_structure.cc",
|
|
393
394
|
"rocksdb/util/dynamic_bloom.cc",
|
|
394
395
|
"rocksdb/util/hash.cc",
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|