Native REST API
Use CRUD, JSON Merge Patch, bulk writes, collection administration, and queries over standard HTTP.
DewDB is a NoSQL document database with a native REST API, built to run as a small local binary and scale across replicated, sharded clusters.
Start with one local node, integrate over HTTP, then scale the topology while your application keeps the same API.
Durable local storage, distributed coordination, and an interface every application already understands.
Use CRUD, JSON Merge Patch, bulk writes, collection administration, and queries over standard HTTP.
CRC-protected append-only logging, crash recovery, in-memory indexing, snapshots, and compaction.
Durable but uncommitted frames remain hidden until acknowledgements advance the collection commit index.
Optional stateless routers map collection and document IDs to configured shard ranges using xxh64.
Choose w=1, w=majority, w=all, or an explicit acknowledgement count for each write request.
Inspect health, JSON metrics, Prometheus output, structured logs, tracing, and replication state.
Use ordinary HTTP methods and JSON payloads for documents, queries, health checks, and administration.
http://127.0.0.1:8081/collections/users/docs/ada{
"value": {
"name": "Ada",
"age": 36,
"profile": {
"city": "London"
}
}
}Run a local node, send your first JSON document, and carry the same REST integration into Dew Cloud.