@nxtedition/rocksdb 13.5.0 → 13.5.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
|
@@ -1121,6 +1121,8 @@ NAPI_METHOD(db_open) {
|
|
|
1121
1121
|
NAPI_STATUS_THROWS(GetProperty(env, options, "parallelism", parallelism));
|
|
1122
1122
|
dbOptions.IncreaseParallelism(parallelism);
|
|
1123
1123
|
|
|
1124
|
+
NAPI_STATUS_THROWS(GetProperty(env, options, "walDir", dbOptions.wal_dir));
|
|
1125
|
+
|
|
1124
1126
|
uint32_t walTTL = 0;
|
|
1125
1127
|
NAPI_STATUS_THROWS(GetProperty(env, options, "walTTL", walTTL));
|
|
1126
1128
|
dbOptions.WAL_ttl_seconds = walTTL / 1e3;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|