Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@

All notable changes to this project will be documented in this file.

## [1.3.1] - 2026-01-30
### Maintenance
- Version bump to 1.3.1 for release.

## [1.2.0] - 2026-01-11
### Performance
- Enabled SQLite WAL by default to improve concurrent reads/writes.
- Added configurable `concurrency` (default 1 for backward compatibility).
- Reduced scheduler tick interval to 50 ms with immediate drain when capacity is reached.
- Bench (synthetic, local NVMe): up to ~4.4k tasks/s (concurrency 1024, tasks 10 ms).
- Bench (synthetic, local NVMe): up to ~4.4k tasks/s (concurrency 1024, tasks 10 ms).
### Docs
- Updated README “Performance & tuning” section with concurrency/WAL details and benchmark table.
- Clarified defaults and examples with concurrency option.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ Deletes a task by its ID.
npm install blazerjob
```

> Note: Installation can take a bit longer because BlazerJob pulls in blockchain SDKs and builds native SQLite bindings (`better-sqlite3`). If you’re on a fresh machine, ensure build tools are available (e.g., Python + a C/C++ compiler) before installing.

---

## Performance & tuning
Expand Down Expand Up @@ -583,4 +585,4 @@ const delegation = await getDelegation(process.env.COSMOS_RPC_URL, 'cosmos1deleg

## License

GNU
GNU
Loading