@nxtedition/rocksdb 8.1.16 → 8.1.17
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 = true;
|
|
387
387
|
readOptions.adaptive_readahead = true;
|
|
388
388
|
readOptions.tailing = tailing_;
|
|
389
389
|
|
|
@@ -915,9 +915,8 @@ NAPI_METHOD(db_get_many) {
|
|
|
915
915
|
rocksdb::ReadOptions readOptions;
|
|
916
916
|
readOptions.fill_cache = fillCache;
|
|
917
917
|
readOptions.snapshot = snapshot.get();
|
|
918
|
-
readOptions.async_io = true;
|
|
918
|
+
// readOptions.async_io = true;
|
|
919
919
|
readOptions.ignore_range_deletions = ignoreRangeDeletions;
|
|
920
|
-
readOptions.optimize_multiget_for_io = true;
|
|
921
920
|
|
|
922
921
|
const auto size = keys.size();
|
|
923
922
|
|
package/deps/rocksdb/rocksdb.gyp
CHANGED
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"ROCKSDB_PTHREAD_ADAPTIVE_MUTEX=1",
|
|
88
88
|
"ROCKSDB_RANGESYNC_PRESENT=1",
|
|
89
89
|
"ROCKSDB_SCHED_GETCPU_PRESENT=1",
|
|
90
|
-
"ROCKSDB_IOURING_PRESENT=1",
|
|
90
|
+
# "ROCKSDB_IOURING_PRESENT=1",
|
|
91
91
|
"USE_FOLLY=1",
|
|
92
92
|
"FOLLY_NO_CONFIG=1"
|
|
93
93
|
"HAVE_SSE42=1",
|
|
@@ -115,9 +115,6 @@
|
|
|
115
115
|
"/usr/lib/include",
|
|
116
116
|
# "/usr/local/Cellar/jemalloc/5.3.0/include"
|
|
117
117
|
],
|
|
118
|
-
"dependencies": [
|
|
119
|
-
"../liburing/liburing.gyp:liburing"
|
|
120
|
-
],
|
|
121
118
|
"cflags": [
|
|
122
119
|
"-msse4.2",
|
|
123
120
|
"-mpclmul",
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"variables": { "openssl_fips": "0" },
|
|
3
|
-
"targets":
|
|
4
|
-
[
|
|
5
|
-
{
|
|
6
|
-
"target_name": "liburing",
|
|
7
|
-
"type": "static_library",
|
|
8
|
-
"include_dirs": ["linux", "liburing/src/include"],
|
|
9
|
-
"direct_dependent_settings":
|
|
10
|
-
{ "include_dirs": ["linux", "liburing/src/include"] },
|
|
11
|
-
"sources":
|
|
12
|
-
[
|
|
13
|
-
"liburing/src/queue.c",
|
|
14
|
-
"liburing/src/register.c",
|
|
15
|
-
"liburing/src/setup.c",
|
|
16
|
-
"liburing/src/syscall.c",
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
}
|