Skip to main content

⚡ aof-db

The embedded database that goes brrr.

Stupid-fast, append-only, zero-server storage you drop into your app and forget about.


63,400 writes/sec        1,340,000 point reads/sec        one fsync per batch

aof-db is a tiny, blazing-fast, in-process datastore. No daemon. No schema migrations. No 400 MB of dependencies. Just import it and start flooding it with data — it keeps up.

Why people can't shut up about it

  • 🏎️ Fast where it counts. Append-only + group-commit: one fsync per batch, not per record. Bigger batches get cheaper per item. Throughput goes up under load, not down.
  • 🪶 Featherweight. In-process, near-zero footprint. Boots instantly, runs in memory, persists when you say so.
  • 🧷 Durable, not fragile. Every write is hash-chained and the log replays clean on open — crash-safe without the ceremony.
  • 🚀 Scales with your ambition. Same engine family as crypto-database — flip on the content-addressed DAG the day you need time-travel and tamper-evidence. Start fast, grow powerful.

Install (10 seconds, tops)

npm install aof-db     #  pip install aof-db     #  cargo add aof-db
import { NedbCore } from "aof-db";
const db = new NedbCore();
console.time("100k");
for (let i = 0; i < 100_000; i++) db.put("events", String(i), JSON.stringify({ t: Date.now(), i }));
db.flush();              // one durable group-commit for the whole burst
console.timeEnd("100k"); // …go on, time it.

Built for

Edge & embedded · high-throughput event logging · local-first apps · game state · CLIs · anywhere "just make it fast" beats "stand up a server."

Note: aof-db was previously published as nitrodb. The rename aligns the public package name with what it is — an append-only-file (AOF) fast-path distribution of NEDB. Same engine, same speed, new name.

If aof-db just saved your afternoon, ⭐ it and tell a friend.


aof-db is a distribution of the NEDB engine, tuned for speed + simplicity (benchmarks measured on commodity hardware — yours will vary). Engine development: Eth-Interchained/nedb. © Interchained LLC.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aof_db-2.7.2.tar.gz (83.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aof_db-2.7.2-py3-none-any.whl (88.0 kB view details)

Uploaded Python 3

aof_db-2.7.2-cp38-abi3-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

aof_db-2.7.2-cp38-abi3-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file aof_db-2.7.2.tar.gz.

File metadata

  • Download URL: aof_db-2.7.2.tar.gz
  • Upload date:
  • Size: 83.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for aof_db-2.7.2.tar.gz
Algorithm Hash digest
SHA256 f7f5e6f6021ff7c91d048e662488508c8e3a0668a4a2db5c42878ba8e2f142a5
MD5 884a27bcea36fb9d9332e9fb234d2bb7
BLAKE2b-256 9278c5f0d74a15f5a8b8c1081ce98aca304be3ffd62dbbac4264429fb7d3b0f3

See more details on using hashes here.

File details

Details for the file aof_db-2.7.2-py3-none-any.whl.

File metadata

  • Download URL: aof_db-2.7.2-py3-none-any.whl
  • Upload date:
  • Size: 88.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for aof_db-2.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a198334a3caf6bd20b1004a4fa14bca3adb4f891105527315a76b88e02e3b148
MD5 13abab88d5fed391df5b1dd5cec754bd
BLAKE2b-256 1607c6822364b5bc5fb05b267855caf6b3808dcefe0b84089e08584b8d29deea

See more details on using hashes here.

File details

Details for the file aof_db-2.7.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aof_db-2.7.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 297feb65763edd314ae22ab6d9a80c16354fcab8c35a06b526964505fe36f87a
MD5 accc0a1cb1f66a662227ab644c871ea2
BLAKE2b-256 a52cfd89ef770c80eaba09f40171ed34487bf428b0528a768bf53186ef88aef8

See more details on using hashes here.

File details

Details for the file aof_db-2.7.2-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aof_db-2.7.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20d6ad91c6c6c098346c81a36a5f6cd4f4796b5832abd85f202a1815363f4082
MD5 dd22c1d4514ddbd92492bcbbd4a26e1b
BLAKE2b-256 790b029515bd108490a538e84613c7423d6023a5398e0051a4101fbe1dc06312

See more details on using hashes here.

Release history Release notifications | RSS feed

2.8.2

4 files

2.8.1

4 files

2.8.0

4 files

This release

2.7.2 This release

4 files

2.7.1

4 files

2.7.0

4 files

2.6.3

4 files

2.6.2

4 files

2.6.1

4 files

2.6.0

4 files

2.5.55

4 files

2.5.45

4 files

2.5.44

4 files

2.5.43

4 files

2.5.34

4 files

2.5.2

4 files

2.5.1

4 files

2.5.0

4 files

2.4.468

4 files

2.4.68

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page