@abtnode/db-cache 1.16.45-beta-20250628-221915-2d6b9a34 → 1.16.45-beta-20250630-233332-04c2bd6f

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/dist/index.cjs CHANGED
@@ -176,7 +176,7 @@ async function initSqliteWithRetry(db) {
176
176
  PRAGMA journal_mode = WAL;
177
177
  PRAGMA synchronous = OFF;
178
178
  PRAGMA busy_timeout = 20000;
179
- PRAGMA wal_autocheckpoint = 0;
179
+ PRAGMA wal_autocheckpoint = 10000;
180
180
  `;
181
181
  const maxRetries = 10;
182
182
  const delayMs = 2e3;
package/dist/index.mjs CHANGED
@@ -156,7 +156,7 @@ async function initSqliteWithRetry(db) {
156
156
  PRAGMA journal_mode = WAL;
157
157
  PRAGMA synchronous = OFF;
158
158
  PRAGMA busy_timeout = 20000;
159
- PRAGMA wal_autocheckpoint = 0;
159
+ PRAGMA wal_autocheckpoint = 10000;
160
160
  `;
161
161
  const maxRetries = 10;
162
162
  const delayMs = 2e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/db-cache",
3
- "version": "1.16.45-beta-20250628-221915-2d6b9a34",
3
+ "version": "1.16.45-beta-20250630-233332-04c2bd6f",
4
4
  "description": "Db cache use redis or sqlite as backend",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -44,5 +44,5 @@
44
44
  "typescript": "^5.6.3",
45
45
  "unbuild": "^2.0.0"
46
46
  },
47
- "gitHead": "af045bf41dea3533252fc097214cfbe8c1f2c756"
47
+ "gitHead": "04c65d22fbc6d064ed6192addb4e00a2d11bde3b"
48
48
  }