@nxtedition/rocksdb 8.1.12 → 8.1.13

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.
@@ -0,0 +1,20 @@
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
+ }
@@ -115,6 +115,9 @@
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
+ ],
118
121
  "cflags": [
119
122
  "-msse4.2",
120
123
  "-mpclmul",
@@ -161,12 +164,13 @@
161
164
  "rocksdb/cache/cache.cc",
162
165
  "rocksdb/cache/cache_entry_roles.cc",
163
166
  "rocksdb/cache/cache_key.cc",
167
+ "rocksdb/cache/cache_helpers.cc",
164
168
  "rocksdb/cache/cache_reservation_manager.cc",
165
169
  "rocksdb/cache/charged_cache.cc",
166
170
  "rocksdb/cache/clock_cache.cc",
167
171
  "rocksdb/cache/compressed_secondary_cache.cc",
168
172
  "rocksdb/cache/lru_cache.cc",
169
- "rocksdb/cache/secondary_cache.cc",
173
+ "rocksdb/cache/secondary_cache.cc",
170
174
  "rocksdb/cache/sharded_cache.cc",
171
175
  "rocksdb/db/arena_wrapped_db_iter.cc",
172
176
  "rocksdb/db/blob/blob_contents.cc",
@@ -308,6 +312,8 @@
308
312
  "rocksdb/options/options.cc",
309
313
  "rocksdb/options/options_helper.cc",
310
314
  "rocksdb/options/options_parser.cc",
315
+ "rocksdb/port/mmap.cc",
316
+ "rocksdb/port/stack_trace.cc",
311
317
  "rocksdb/table/adaptive/adaptive_table_factory.cc",
312
318
  "rocksdb/table/block_based/binary_search_index_reader.cc",
313
319
  "rocksdb/table/block_based/block.cc",
@@ -316,6 +322,7 @@
316
322
  "rocksdb/table/block_based/block_based_table_iterator.cc",
317
323
  "rocksdb/table/block_based/block_based_table_reader.cc",
318
324
  "rocksdb/table/block_based/block_builder.cc",
325
+ "rocksdb/table/block_based/block_cache.cc",
319
326
  "rocksdb/table/block_based/block_prefetcher.cc",
320
327
  "rocksdb/table/block_based/block_prefix_index.cc",
321
328
  "rocksdb/table/block_based/data_block_hash_index.cc",
@@ -383,6 +390,7 @@
383
390
  "rocksdb/util/concurrent_task_limiter_impl.cc",
384
391
  "rocksdb/util/crc32c.cc",
385
392
  "rocksdb/util/crc32c_arm64.cc",
393
+ "rocksdb/util/data_structure.cc",
386
394
  "rocksdb/util/dynamic_bloom.cc",
387
395
  "rocksdb/util/hash.cc",
388
396
  "rocksdb/util/murmurhash.cc",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "8.1.12",
3
+ "version": "8.1.13",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
Binary file