Deploy in 115+ regions with the modern database for every enterprise.
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Start Free
Gemini 3 and 200+ AI Models on One Platform
Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console.
Build generative AI apps with Vertex AI. Switch between models without switching platforms.
FastDHT is high performance DHT ( distributed hash table ) which based keyvalue pairs. Storage use Berkeley DB, and network IO use libevent. It can store mass keyvalue pairs such as filename mapping, session data and user related data.
High performance distributed in-memory key/value store
Infinispan is an open source, Java based data grid platform. ***IMPORTANT*** Starting with Infinispan 5.0.0.FINAL, Infinispan releases are no longer hosted in Sourceforge. They can now be located in www.jboss.org/infinispan/downloads
This project is to build a distributed Key-Value Store (KVS).
* Can survive software or hardware failures.
* Can tolerate failures of entire nodes.
* Can recognize that new storage nodes are joining the system and are able to utilize new nodes.
Distributed Balanced Tree (distributed b-tree): A distributed data-structure, where the data is accessed with get(key), put(key, value), delete(key), getNext(key), getPrev(key) - can be used as foundation for distributed databases, filessystems, P2P.