High-performance replicated key-value store
KVNode exposes collections and keys over HTTP, with root/replica synchronization through its WAL protocol.
Key features
Store values by collection and key, list keys, and replicate changes between nodes.
Collections and keys
Create collections and set, get, list, or delete keys through the v1 HTTP API.
Root/replica model
Replicas follow a root node using the protocol commands implemented by KVNode.
Versioned writes
Write operations return sequence and version information for synchronization.
Quick start
Get started with KVNode in seconds using the API.
1curl -X POST https://kvnode.hola.cloud/v1/collections \
2 -H 'Api-Key: $API_KEY' -H 'Api-Secret: $API_SECRET' \
3 -d '{"collection":"users"}' \
4 && curl -X POST https://kvnode.hola.cloud/v1/collections/users/keys/123 \
5 -H 'Api-Key: $API_KEY' -H 'Api-Secret: $API_SECRET' \
6 -d '{"value":{"name":"Alice"}}'
Common use cases
Microservices orchestration
Build and deploy with KVNode on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Data pipeline automation
Build and deploy with KVNode on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Event-driven architectures
Build and deploy with KVNode on HolaCloud's enterprise platform, designed for security, reliability, and scale.
API backend development
Build and deploy with KVNode on HolaCloud's enterprise platform, designed for security, reliability, and scale.
Ready to get started?
Explore the documentation or launch the console to start building with KVNode.
Comments