数据库列表
数据库 | 代码地址 | 最后更新时间 | 技术栈 | 存储引擎 |
---|---|---|---|---|
Tendis | https://github.com/Tencent/Tendis | 2024.05 | C++ /Tcl /Go |
RocksDB |
KeyDB | https://github.com/Snapchat/KeyDB | 2024.05 | C++ /C /Tcl /Ruby |
RocksDB |
Kvrocks | https://github.com/apache/kvrocks | 2024.05 | C++ /Go |
RocksDB |
Pica | https://github.com/OpenAtomFoundation/pika | 2024.05 | C++ /Go /Tcl /Python |
RocksDB |
tidis | https://github.com/tidb-incubator/tidis | 2024 | Rust /Python |
TiKV |
Redeo | https://github.com/bsm/redeo | 2023 | Go |
一个服务层,不是数据库 |
Skyhook | https://github.com/aerospike-community/skyhook | 2023 | Kotlin |
Aerospike |
SSDB | https://github.com/ideawu/ssdb | 2021 | C++ /PHP /Python |
LevelDB |
titan | https://github.com/distributedio/titan | 2021 | Go |
TiKV |
elasticell | https://gitee.com/wanttobeamaster/elasticell | 2021 | Go |
tidb /RocksDB |
TiTea | https://github.com/gengmei-tech/titea | 2019 | Go /Python |
Tikv /PD |
ardb | https://github.com/yinqiwen/ardb | 2018 | C++ |
rocksdb /leveldb /lmdb /wiredtiger /perconaft /forestdb |
SableDB | https://github.com/sabledb-io/sabledb | 2024.09 | Rust |
rocksDB |
rlite | https://github.com/seppo0010/rlite | 2015 | C |
无服务的轻量级 redis |
Redis docker 服务
version: '3'
services:
redis_server:
image: redis:7.0.4
hostname: redis_server
command:
- "redis-server"
- "--save"
- "60"
- "1"
- "--loglevel"
- "warning"
#ports:
# - "17659:6379"
user: root
network_mode: bridge
restart: always
volumes:
- /etc/localtime:/etc/localtime
- ./data/redis/data:/data
Kvrocks docker 服务
version: '3'
services:
kvrocks_server:
image: apache/kvrocks:2.8.0
hostname: kvrocks_server
command:
- "--bind"
- "0.0.0.0"
- "--dir"
- "/data/kvrocks"
- "--workers"
- "16"
#ports:
# - "10939:6666"
volumes:
- ./data/kvrocks:/data/kvrocks
#environment:
# - ""
user: root
network_mode: bridge