pmwkaa/sophia
Modern transactional key-value/row storage library. observed · 2026-08-28
Health v2 · maintenance only
54/100
- Activity 70
- Release rhythm 8
- Longevity 100
Flags: no_license
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4735
- days_rel: n/a
- days_push: 183
- n_releases_24m: 0
Adoption not part of the score
1885 stars · 146 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
Sophia is a transactional MVCC key-value/row storage engine implemented as a small, dependency-free C library with a minimalistic, FFI-friendly API. It uses a RAM-disk hybrid append-only architecture with guaranteed O(1) worst-case complexity for reads, writes, and range scans.
Use cases
- embed a fast transactional key-value store in a C application
- store key-value data with ACID guarantees and MVCC concurrency
- build secondary indexes over a key-value storage engine
- perform prefix search and range scans with consistent cursors
- automatically expire keys and garbage-collect old versions
- compress on-disk data with lz4 or zstd
- run multi-database workloads sharing a single write-ahead log
When to choose
- you need an embeddable, zero-dependency C storage engine with full ACID and MVCC semantics
- you want predictable O(1) worst-case read/write/scan performance without LSM degradation over time
- you need cross-database transactions, key expiration, or hot backup in a lightweight library
- you are studying storage engine design or building on ideas used in Amelia and Monotone
When to avoid
- you need a project that is actively developed and maintained - Sophia is no longer developed
- you need SQL, a client-server database, or rich ecosystem tooling
- you require guaranteed long-term security fixes or community support
- you prefer mainstream engines like SQLite, RocksDB, or LMDB with larger communities
Facets
library · maturity abandoned
database caching serialization compression databases developer-tools performance cross-platform c key-value-store storage-engine mvcc acid embedded-database append-only transactional linux macos
1 source
- readme: https://github.com/pmwkaa/sophia · fetched 2026-08-28 · 50468a661350
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| pmwkaa/sophia | main | 54 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem