Description
Sophia is advanced transactional MVCC key-value/row storage library. Optimized for Updates and Range-Scans. It can efficiently work with large volumes of ordered data, such as a time-series, events, logs, counters, metrics, etc.
Sophia alternatives and similar libraries
Based on the "Database" category.
Alternatively, view Sophia alternatives based on common mentions on social networks and blogs.
-
RocksDB
A library that provides an embeddable, persistent key-value store for fast storage. -
LevelDB
LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. -
LMDB
Read-only mirror of official repo on openldap.org. Issues and pull requests here are ignored. Use OpenLDAP ITS for issues. -
SQLite
Unofficial git mirror of SQLite sources (see link for build instructions) -
cpp_redis
C++11 Lightweight Redis client: async, thread-safe, no dependency, pipelining, multi-platform. -
libmdbx
One of the fastest embeddable key-value ACID database without WAL. libmdbx surpasses the legendary LMDB in terms of reliability, features and performance. -
Bedrock
Rock solid distributed database specializing in active/active automatic failover and WAN replication -
upscaledb
A very fast lightweight embedded database engine with a built-in query language. -
SimDB
A high performance, shared memory, lock free, cross platform, single file, no dependencies, C++11 key-value store -
ObjectBox C/C++ database
C and C++ database for objects and structs -
BerylDB
BerylDB is a fully modular data structure data manager that can be used to store data as key-value entries. The server allows channel subscription and is optimized to be used as a cache repository. Supported structures include lists, sets, multimaps, and keys.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Sophia or a related project?
Popular Comparisons
README
Sophia is advanced transactional MVCC key-value/row storage library.
How does it differ from other storages?
Sophia is RAM-Disk hybrid storage. It is designed to provide best possible on-disk performance without degradation in time. It has guaranteed O(1) worst case complexity for read, write and range scan operations.
It adopts to expected write rate, total capacity and cache size. Memory requirements for common HDD and Flash drives can be seen Here.
What is it good for?
For server environment, which requires lowest latency write and read, predictable behaviour, optimized storage schema and transaction guarantees. It can efficiently work with large volumes of ordered data, such as a time-series, analytics, events, logs, counters, metrics, full-text search, common key-value, etc.
Features
- Full ACID compliancy
- MVCC engine
- Optimistic, non-blocking concurrency with N-writers and M-readers
- Pure Append-Only
- Unique data storage architecture
- Fast: O(1) worst for read, write and range scan operations
- Multi-threaded compaction
- Multi-databases support (sharing a single write-ahead log)
- Multi-Statement and Single-Statement Transactions (cross-database)
- Serialized Snapshot Isolation (SSI)
- Optimized storage schema (numeric types has zero-cost storage)
- Can be used to build Secondary Indexes
- Upsert (fast write-only 'update or insert' operation)
- Consistent Cursors
- Prefix search
- Automatic garbage-collection
- Automatic key-expire
- Hot Backup
- Compression (no fixed-size blocks, no-holes, supported: lz4, zstd)
- Direct IO support
- Use mmap or pread access methods
- Simple and easy to use (minimalistic API, FFI-friendly, amalgamated)
- Implemented as small C-written library with zero dependencies
- Carefully tested
- Open Source Software, BSD
Support
Sophia Documentation and Bindings for the most common languages are available on the website.
Please use Official Sophia Google Group or StackOverflow to ask any general questions. More information is available Here.