@nxtedition/rocksdb 5.2.36 → 5.2.39
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 +66 -91
- package/deps/liburing/liburing/COPYING +502 -0
- package/deps/liburing/liburing/COPYING.GPL +339 -0
- package/deps/liburing/liburing/LICENSE +7 -0
- package/deps/liburing/liburing/Makefile +84 -0
- package/deps/liburing/liburing/Makefile.quiet +11 -0
- package/deps/liburing/liburing/README +46 -0
- package/deps/liburing/liburing/configure +420 -0
- package/deps/liburing/liburing/debian/README.Debian +7 -0
- package/deps/liburing/liburing/debian/changelog +27 -0
- package/deps/liburing/liburing/debian/compat +1 -0
- package/deps/liburing/liburing/debian/control +48 -0
- package/deps/liburing/liburing/debian/copyright +49 -0
- package/deps/liburing/liburing/debian/liburing-dev.install +4 -0
- package/deps/liburing/liburing/debian/liburing-dev.manpages +6 -0
- package/deps/liburing/liburing/debian/liburing1-udeb.install +1 -0
- package/deps/liburing/liburing/debian/liburing1.install +1 -0
- package/deps/liburing/liburing/debian/liburing1.symbols +32 -0
- package/deps/liburing/liburing/debian/patches/series +1 -0
- package/deps/liburing/liburing/debian/rules +81 -0
- package/deps/liburing/liburing/debian/source/format +1 -0
- package/deps/liburing/liburing/debian/source/local-options +2 -0
- package/deps/liburing/liburing/debian/source/options +1 -0
- package/deps/liburing/liburing/debian/watch +3 -0
- package/deps/liburing/liburing/examples/Makefile +29 -0
- package/deps/liburing/liburing/examples/io_uring-cp.c +279 -0
- package/deps/liburing/liburing/examples/io_uring-test.c +112 -0
- package/deps/liburing/liburing/examples/link-cp.c +193 -0
- package/deps/liburing/liburing/examples/ucontext-cp.c +273 -0
- package/deps/liburing/liburing/liburing.pc.in +12 -0
- package/deps/liburing/liburing/liburing.spec +66 -0
- package/deps/liburing/liburing/make-debs.sh +53 -0
- package/deps/liburing/liburing/man/io_uring.7 +736 -0
- package/deps/liburing/liburing/man/io_uring_enter.2 +1403 -0
- package/deps/liburing/liburing/man/io_uring_get_sqe.3 +37 -0
- package/deps/liburing/liburing/man/io_uring_queue_exit.3 +27 -0
- package/deps/liburing/liburing/man/io_uring_queue_init.3 +44 -0
- package/deps/liburing/liburing/man/io_uring_register.2 +605 -0
- package/deps/liburing/liburing/man/io_uring_setup.2 +515 -0
- package/deps/liburing/liburing/src/Makefile +76 -0
- package/deps/liburing/liburing/src/include/liburing/barrier.h +73 -0
- package/deps/liburing/liburing/src/include/liburing/io_uring.h +422 -0
- package/deps/liburing/liburing/src/include/liburing.h +775 -0
- package/deps/liburing/liburing/src/liburing.map +46 -0
- package/deps/liburing/liburing/src/queue.c +403 -0
- package/deps/liburing/liburing/src/register.c +299 -0
- package/deps/liburing/liburing/src/setup.c +356 -0
- package/deps/liburing/liburing/src/syscall.c +73 -0
- package/deps/liburing/liburing/src/syscall.h +20 -0
- package/deps/liburing/liburing/test/232c93d07b74-test.c +305 -0
- package/deps/liburing/liburing/test/35fa71a030ca-test.c +329 -0
- package/deps/liburing/liburing/test/500f9fbadef8-test.c +89 -0
- package/deps/liburing/liburing/test/7ad0e4b2f83c-test.c +93 -0
- package/deps/liburing/liburing/test/8a9973408177-test.c +106 -0
- package/deps/liburing/liburing/test/917257daa0fe-test.c +53 -0
- package/deps/liburing/liburing/test/Makefile +312 -0
- package/deps/liburing/liburing/test/a0908ae19763-test.c +58 -0
- package/deps/liburing/liburing/test/a4c0b3decb33-test.c +180 -0
- package/deps/liburing/liburing/test/accept-link.c +251 -0
- package/deps/liburing/liburing/test/accept-reuse.c +164 -0
- package/deps/liburing/liburing/test/accept-test.c +79 -0
- package/deps/liburing/liburing/test/accept.c +476 -0
- package/deps/liburing/liburing/test/across-fork.c +283 -0
- package/deps/liburing/liburing/test/b19062a56726-test.c +53 -0
- package/deps/liburing/liburing/test/b5837bd5311d-test.c +77 -0
- package/deps/liburing/liburing/test/ce593a6c480a-test.c +135 -0
- package/deps/liburing/liburing/test/close-opath.c +122 -0
- package/deps/liburing/liburing/test/config +10 -0
- package/deps/liburing/liburing/test/connect.c +398 -0
- package/deps/liburing/liburing/test/cq-full.c +96 -0
- package/deps/liburing/liburing/test/cq-overflow.c +294 -0
- package/deps/liburing/liburing/test/cq-peek-batch.c +102 -0
- package/deps/liburing/liburing/test/cq-ready.c +94 -0
- package/deps/liburing/liburing/test/cq-size.c +58 -0
- package/deps/liburing/liburing/test/d4ae271dfaae-test.c +96 -0
- package/deps/liburing/liburing/test/d77a67ed5f27-test.c +65 -0
- package/deps/liburing/liburing/test/defer.c +307 -0
- package/deps/liburing/liburing/test/double-poll-crash.c +186 -0
- package/deps/liburing/liburing/test/eeed8b54e0df-test.c +114 -0
- package/deps/liburing/liburing/test/empty-eownerdead.c +42 -0
- package/deps/liburing/liburing/test/eventfd-disable.c +151 -0
- package/deps/liburing/liburing/test/eventfd-ring.c +97 -0
- package/deps/liburing/liburing/test/eventfd.c +112 -0
- package/deps/liburing/liburing/test/fadvise.c +202 -0
- package/deps/liburing/liburing/test/fallocate.c +249 -0
- package/deps/liburing/liburing/test/fc2a85cb02ef-test.c +138 -0
- package/deps/liburing/liburing/test/file-register.c +843 -0
- package/deps/liburing/liburing/test/file-update.c +173 -0
- package/deps/liburing/liburing/test/files-exit-hang-poll.c +128 -0
- package/deps/liburing/liburing/test/files-exit-hang-timeout.c +134 -0
- package/deps/liburing/liburing/test/fixed-link.c +90 -0
- package/deps/liburing/liburing/test/fsync.c +224 -0
- package/deps/liburing/liburing/test/hardlink.c +136 -0
- package/deps/liburing/liburing/test/helpers.c +135 -0
- package/deps/liburing/liburing/test/helpers.h +67 -0
- package/deps/liburing/liburing/test/io-cancel.c +537 -0
- package/deps/liburing/liburing/test/io_uring_enter.c +296 -0
- package/deps/liburing/liburing/test/io_uring_register.c +664 -0
- package/deps/liburing/liburing/test/io_uring_setup.c +192 -0
- package/deps/liburing/liburing/test/iopoll.c +366 -0
- package/deps/liburing/liburing/test/lfs-openat-write.c +117 -0
- package/deps/liburing/liburing/test/lfs-openat.c +273 -0
- package/deps/liburing/liburing/test/link-timeout.c +1107 -0
- package/deps/liburing/liburing/test/link.c +496 -0
- package/deps/liburing/liburing/test/link_drain.c +229 -0
- package/deps/liburing/liburing/test/madvise.c +195 -0
- package/deps/liburing/liburing/test/mkdir.c +108 -0
- package/deps/liburing/liburing/test/multicqes_drain.c +383 -0
- package/deps/liburing/liburing/test/nop-all-sizes.c +107 -0
- package/deps/liburing/liburing/test/nop.c +115 -0
- package/deps/liburing/liburing/test/open-close.c +146 -0
- package/deps/liburing/liburing/test/openat2.c +240 -0
- package/deps/liburing/liburing/test/personality.c +204 -0
- package/deps/liburing/liburing/test/pipe-eof.c +81 -0
- package/deps/liburing/liburing/test/pipe-reuse.c +105 -0
- package/deps/liburing/liburing/test/poll-cancel-ton.c +139 -0
- package/deps/liburing/liburing/test/poll-cancel.c +135 -0
- package/deps/liburing/liburing/test/poll-link.c +227 -0
- package/deps/liburing/liburing/test/poll-many.c +208 -0
- package/deps/liburing/liburing/test/poll-mshot-update.c +273 -0
- package/deps/liburing/liburing/test/poll-ring.c +48 -0
- package/deps/liburing/liburing/test/poll-v-poll.c +353 -0
- package/deps/liburing/liburing/test/poll.c +109 -0
- package/deps/liburing/liburing/test/probe.c +137 -0
- package/deps/liburing/liburing/test/read-write.c +876 -0
- package/deps/liburing/liburing/test/register-restrictions.c +633 -0
- package/deps/liburing/liburing/test/rename.c +134 -0
- package/deps/liburing/liburing/test/ring-leak.c +173 -0
- package/deps/liburing/liburing/test/ring-leak2.c +249 -0
- package/deps/liburing/liburing/test/rsrc_tags.c +449 -0
- package/deps/liburing/liburing/test/runtests-loop.sh +16 -0
- package/deps/liburing/liburing/test/runtests.sh +170 -0
- package/deps/liburing/liburing/test/rw_merge_test.c +97 -0
- package/deps/liburing/liburing/test/self.c +91 -0
- package/deps/liburing/liburing/test/send_recv.c +291 -0
- package/deps/liburing/liburing/test/send_recvmsg.c +345 -0
- package/deps/liburing/liburing/test/sendmsg_fs_cve.c +198 -0
- package/deps/liburing/liburing/test/shared-wq.c +84 -0
- package/deps/liburing/liburing/test/short-read.c +75 -0
- package/deps/liburing/liburing/test/shutdown.c +163 -0
- package/deps/liburing/liburing/test/sigfd-deadlock.c +74 -0
- package/deps/liburing/liburing/test/socket-rw-eagain.c +156 -0
- package/deps/liburing/liburing/test/socket-rw.c +147 -0
- package/deps/liburing/liburing/test/splice.c +511 -0
- package/deps/liburing/liburing/test/sq-full-cpp.cc +45 -0
- package/deps/liburing/liburing/test/sq-full.c +45 -0
- package/deps/liburing/liburing/test/sq-poll-dup.c +200 -0
- package/deps/liburing/liburing/test/sq-poll-kthread.c +168 -0
- package/deps/liburing/liburing/test/sq-poll-share.c +137 -0
- package/deps/liburing/liburing/test/sq-space_left.c +159 -0
- package/deps/liburing/liburing/test/sqpoll-cancel-hang.c +159 -0
- package/deps/liburing/liburing/test/sqpoll-disable-exit.c +195 -0
- package/deps/liburing/liburing/test/sqpoll-exit-hang.c +77 -0
- package/deps/liburing/liburing/test/sqpoll-sleep.c +68 -0
- package/deps/liburing/liburing/test/statx.c +172 -0
- package/deps/liburing/liburing/test/stdout.c +232 -0
- package/deps/liburing/liburing/test/submit-link-fail.c +154 -0
- package/deps/liburing/liburing/test/submit-reuse.c +239 -0
- package/deps/liburing/liburing/test/symlink.c +116 -0
- package/deps/liburing/liburing/test/teardowns.c +58 -0
- package/deps/liburing/liburing/test/thread-exit.c +131 -0
- package/deps/liburing/liburing/test/timeout-new.c +246 -0
- package/deps/liburing/liburing/test/timeout-overflow.c +204 -0
- package/deps/liburing/liburing/test/timeout.c +1354 -0
- package/deps/liburing/liburing/test/unlink.c +111 -0
- package/deps/liburing/liburing/test/wakeup-hang.c +162 -0
- package/deps/liburing/liburing.gyp +20 -0
- package/deps/rocksdb/rocksdb/db/corruption_test.cc +62 -0
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl.h +7 -62
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_files.cc +25 -11
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_open.cc +74 -155
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.cc +1 -2
- package/deps/rocksdb/rocksdb/db/db_impl/db_impl_secondary.h +2 -2
- package/deps/rocksdb/rocksdb/env/fs_posix.cc +13 -0
- package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.cc +4 -2
- package/deps/rocksdb/rocksdb/file/file_prefetch_buffer.h +22 -4
- package/deps/rocksdb/rocksdb/file/prefetch_test.cc +5 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/file_system.h +15 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/statistics.h +5 -0
- package/deps/rocksdb/rocksdb/include/rocksdb/version.h +1 -1
- package/deps/rocksdb/rocksdb/monitoring/statistics.cc +3 -0
- package/deps/rocksdb/rocksdb/monitoring/stats_history_test.cc +3 -7
- package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader.h +2 -1
- package/deps/rocksdb/rocksdb/table/block_based/block_based_table_reader_test.cc +44 -29
- package/deps/rocksdb/rocksdb.gyp +4 -3
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/prebuilds/darwin-x64/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.node +0 -0
- package/prebuilds/prebuilds/linux-x64/node.napi.node +0 -0
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
#include "table/block_based/block_based_table_reader.h"
|
|
7
7
|
|
|
8
|
+
#include <cmath>
|
|
8
9
|
#include <memory>
|
|
9
10
|
#include <string>
|
|
10
11
|
|
|
@@ -330,9 +331,9 @@ class BlockBasedTableReaderCapMemoryTest
|
|
|
330
331
|
CacheEntryRole::kBlockBasedTableReader>::
|
|
331
332
|
GetDummyEntrySize() ==
|
|
332
333
|
0 &&
|
|
333
|
-
cache_capacity
|
|
334
|
-
|
|
335
|
-
|
|
334
|
+
cache_capacity >= 2 * CacheReservationManagerImpl<
|
|
335
|
+
CacheEntryRole::kBlockBasedTableReader>::
|
|
336
|
+
GetDummyEntrySize());
|
|
336
337
|
|
|
337
338
|
// We need to subtract 1 for max_num_dummy_entry to account for dummy
|
|
338
339
|
// entries' overhead, assumed the overhead is no greater than 1 dummy entry
|
|
@@ -347,11 +348,11 @@ class BlockBasedTableReaderCapMemoryTest
|
|
|
347
348
|
max_num_dummy_entry *
|
|
348
349
|
CacheReservationManagerImpl<
|
|
349
350
|
CacheEntryRole::kBlockBasedTableReader>::GetDummyEntrySize();
|
|
350
|
-
std::size_t
|
|
351
|
+
std::size_t max_table_reader_num_capped = static_cast<std::size_t>(
|
|
351
352
|
std::floor(1.0 * cache_capacity_rounded_to_dummy_entry_multiples /
|
|
352
353
|
approx_table_reader_mem));
|
|
353
354
|
|
|
354
|
-
return
|
|
355
|
+
return max_table_reader_num_capped;
|
|
355
356
|
}
|
|
356
357
|
|
|
357
358
|
void SetUp() override {
|
|
@@ -361,7 +362,7 @@ class BlockBasedTableReaderCapMemoryTest
|
|
|
361
362
|
compression_type_ = CompressionType::kNoCompression;
|
|
362
363
|
|
|
363
364
|
table_reader_res_only_cache_.reset(new BlockBasedTableReaderResOnlyCache(
|
|
364
|
-
NewLRUCache(
|
|
365
|
+
NewLRUCache(4 * CacheReservationManagerImpl<
|
|
365
366
|
CacheEntryRole::kBlockBasedTableReader>::
|
|
366
367
|
GetDummyEntrySize(),
|
|
367
368
|
0 /* num_shard_bits */, true /* strict_capacity_limit */)));
|
|
@@ -420,22 +421,44 @@ class BlockBasedTableReaderCapMemoryTest
|
|
|
420
421
|
};
|
|
421
422
|
|
|
422
423
|
INSTANTIATE_TEST_CASE_P(CapMemoryUsageUnderCacheCapacity,
|
|
423
|
-
BlockBasedTableReaderCapMemoryTest,
|
|
424
|
+
BlockBasedTableReaderCapMemoryTest,
|
|
425
|
+
::testing::Values(true, false));
|
|
424
426
|
|
|
425
427
|
TEST_P(BlockBasedTableReaderCapMemoryTest, CapMemoryUsageUnderCacheCapacity) {
|
|
426
|
-
const std::size_t
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
428
|
+
const std::size_t max_table_reader_num_capped =
|
|
429
|
+
BlockBasedTableReaderCapMemoryTest::
|
|
430
|
+
CalculateMaxTableReaderNumBeforeCacheFull(
|
|
431
|
+
table_reader_res_only_cache_->GetCapacity(),
|
|
432
|
+
approx_table_reader_mem_);
|
|
433
|
+
|
|
434
|
+
// Acceptable estimtation errors coming from
|
|
435
|
+
// 1. overstimate max_table_reader_num_capped due to # dummy entries is high
|
|
436
|
+
// and results in metadata charge overhead greater than 1 dummy entry size
|
|
437
|
+
// (violating our assumption in calculating max_table_reader_num_capped)
|
|
438
|
+
// 2. overestimate/underestimate max_table_reader_num_capped due to the gap
|
|
439
|
+
// between ApproximateTableReaderMem() and actual table reader mem
|
|
440
|
+
std::size_t max_table_reader_num_capped_upper_bound =
|
|
441
|
+
(std::size_t)(max_table_reader_num_capped * 1.01);
|
|
442
|
+
std::size_t max_table_reader_num_capped_lower_bound =
|
|
443
|
+
(std::size_t)(max_table_reader_num_capped * 0.99);
|
|
444
|
+
std::size_t max_table_reader_num_uncapped =
|
|
445
|
+
(std::size_t)(max_table_reader_num_capped * 1.1);
|
|
446
|
+
ASSERT_GT(max_table_reader_num_uncapped,
|
|
447
|
+
max_table_reader_num_capped_upper_bound)
|
|
448
|
+
<< "We need `max_table_reader_num_uncapped` > "
|
|
449
|
+
"`max_table_reader_num_capped_upper_bound` to differentiate cases "
|
|
450
|
+
"between "
|
|
451
|
+
"reserve_table_reader_memory_ == false and == true)";
|
|
430
452
|
|
|
431
453
|
Status s = Status::OK();
|
|
432
454
|
std::size_t opened_table_reader_num = 0;
|
|
433
455
|
std::string table_name;
|
|
434
456
|
std::vector<std::unique_ptr<BlockBasedTable>> tables;
|
|
435
|
-
|
|
436
457
|
// Keep creating BlockBasedTableReader till hiting the memory limit based on
|
|
437
|
-
// cache capacity and creation fails
|
|
438
|
-
|
|
458
|
+
// cache capacity and creation fails (when reserve_table_reader_memory_ ==
|
|
459
|
+
// true) or reaching a specfied big number of table readers (when
|
|
460
|
+
// reserve_table_reader_memory_ == false)
|
|
461
|
+
while (s.ok() && opened_table_reader_num < max_table_reader_num_uncapped) {
|
|
439
462
|
table_name = "table_" + std::to_string(opened_table_reader_num);
|
|
440
463
|
CreateTable(table_name, compression_type_, kv_);
|
|
441
464
|
tables.push_back(std::unique_ptr<BlockBasedTable>());
|
|
@@ -449,23 +472,14 @@ TEST_P(BlockBasedTableReaderCapMemoryTest, CapMemoryUsageUnderCacheCapacity) {
|
|
|
449
472
|
}
|
|
450
473
|
|
|
451
474
|
if (reserve_table_reader_memory_) {
|
|
452
|
-
EXPECT_TRUE(s.IsMemoryLimit()
|
|
453
|
-
opened_table_reader_num < 2 * max_table_reader_num)
|
|
454
|
-
<< "s: " << s.ToString() << " opened_table_reader_num: "
|
|
455
|
-
<< std::to_string(opened_table_reader_num);
|
|
475
|
+
EXPECT_TRUE(s.IsMemoryLimit()) << "s: " << s.ToString();
|
|
456
476
|
EXPECT_TRUE(s.ToString().find("memory limit based on cache capacity") !=
|
|
457
477
|
std::string::npos);
|
|
458
478
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
// results in metadata charge overhead greater than 1 dummy entry size
|
|
462
|
-
// (violating our assumption in calculating max_table_reader_nums)
|
|
463
|
-
// 2. overestimate/underestimate max_table_reader_num due to the gap between
|
|
464
|
-
// ApproximateTableReaderMem() and actual table reader mem
|
|
465
|
-
EXPECT_GE(opened_table_reader_num, max_table_reader_num * 0.99);
|
|
466
|
-
EXPECT_LE(opened_table_reader_num, max_table_reader_num * 1.01);
|
|
479
|
+
EXPECT_GE(opened_table_reader_num, max_table_reader_num_capped_lower_bound);
|
|
480
|
+
EXPECT_LE(opened_table_reader_num, max_table_reader_num_capped_upper_bound);
|
|
467
481
|
|
|
468
|
-
std::size_t
|
|
482
|
+
std::size_t updated_max_table_reader_num_capped =
|
|
469
483
|
BlockBasedTableReaderCapMemoryTest::
|
|
470
484
|
CalculateMaxTableReaderNumBeforeCacheFull(
|
|
471
485
|
table_reader_res_only_cache_->GetCapacity() / 2,
|
|
@@ -473,7 +487,7 @@ TEST_P(BlockBasedTableReaderCapMemoryTest, CapMemoryUsageUnderCacheCapacity) {
|
|
|
473
487
|
|
|
474
488
|
// Keep deleting BlockBasedTableReader to lower down memory usage from the
|
|
475
489
|
// memory limit to make the next creation succeeds
|
|
476
|
-
while (opened_table_reader_num >=
|
|
490
|
+
while (opened_table_reader_num >= updated_max_table_reader_num_capped) {
|
|
477
491
|
tables.pop_back();
|
|
478
492
|
--opened_table_reader_num;
|
|
479
493
|
}
|
|
@@ -489,7 +503,8 @@ TEST_P(BlockBasedTableReaderCapMemoryTest, CapMemoryUsageUnderCacheCapacity) {
|
|
|
489
503
|
tables.clear();
|
|
490
504
|
EXPECT_EQ(table_reader_res_only_cache_->GetPinnedUsage(), 0);
|
|
491
505
|
} else {
|
|
492
|
-
EXPECT_TRUE(s.ok() &&
|
|
506
|
+
EXPECT_TRUE(s.ok() &&
|
|
507
|
+
opened_table_reader_num == max_table_reader_num_uncapped)
|
|
493
508
|
<< "s: " << s.ToString() << " opened_table_reader_num: "
|
|
494
509
|
<< std::to_string(opened_table_reader_num);
|
|
495
510
|
EXPECT_EQ(table_reader_res_only_cache_->GetPinnedUsage(), 0);
|
package/deps/rocksdb/rocksdb.gyp
CHANGED
|
@@ -83,8 +83,9 @@
|
|
|
83
83
|
"ROCKSDB_PTHREAD_ADAPTIVE_MUTEX=1",
|
|
84
84
|
"ROCKSDB_RANGESYNC_PRESENT=1",
|
|
85
85
|
"ROCKSDB_SCHED_GETCPU_PRESENT=1",
|
|
86
|
-
|
|
87
|
-
# "
|
|
86
|
+
"ROCKSDB_IOURING_PRESENT=1",
|
|
87
|
+
# "ROCKSDB_JEMALLOC=1",
|
|
88
|
+
# "JEMALLOC_NO_DEMANGLE=1",
|
|
88
89
|
"HAVE_SSE42=1",
|
|
89
90
|
"HAVE_BMI=1",
|
|
90
91
|
"HAVE_LZCNT=1",
|
|
@@ -93,10 +94,10 @@
|
|
|
93
94
|
"HAVE_UINT128_EXTENSION=1",
|
|
94
95
|
"HAVE_ALIGNED_NEW=1",
|
|
95
96
|
# "HAVE_FULLFSYNC=1",
|
|
96
|
-
# "LIBURING=1",
|
|
97
97
|
# "NUMA=1",
|
|
98
98
|
# "TBB=1",
|
|
99
99
|
],
|
|
100
|
+
"dependencies": ["../liburing/liburing.gyp:liburing"],
|
|
100
101
|
"cflags": [
|
|
101
102
|
"-msse4.2",
|
|
102
103
|
"-mpclmul",
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|