# KitDB **Repository Path**: weigonghj/KitDB ## Basic Information - **Project Name**: KitDB - **Description**: KitDB是一个内嵌式持久型的 高速NoSQL存储 lib - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: http://kitdb.top/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 28 - **Created**: 2020-01-28 - **Last Updated**: 2022-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # KitDB ![License](https://img.shields.io/badge/license-Apache--2.0-green.svg) [![Maven Central](http://47.98.188.158/pic/maven.svg)](https://search.maven.org/search?q=top.thinkin.kitdb) 更多内容参见:http://kitdb.top/ ## Overview KitDB是一个内嵌式持久型的 高速NoSQL存储 lib,以jar 包方式嵌入到应用中。 KitDB 提供了类似Redis 的数据结构。如KV、List、Map、ZSET等。也提供了TTL(生存时间)、备份、ACID事物,多节点强一致性等功能。 KitDB完全基于磁盘存储,并提供最高百万级别的查询性能和十万的写入性能。 ## GIT IT ```xml top.thinkin.kitdb store VERSION ``` VERSION是Maven Central的最新版本号。您还可以在此图像上找到当前版本: [![Maven Central](http://47.98.188.158/pic/maven.svg)](https://search.maven.org/search?q=top.thinkin.kitdb) ## Features - 完全基于磁盘,不受内存限制 - KV、List、Map、Zet、ZSET等丰富的数据结构 - 最高百万级别的查询性能和十万级的写入性能 - 原子性写入,读写无冲突 - TTL(生存时间) - 备份与恢复 - ACID事物 - 多节点一致性支持(官方插件使用Raft协议支持强一致性,也可自行使用其他协议或方式) #### KitDB和Redis的性能对比 > 注意:KitDB的测试为本地操作,和Redis对比无意义,只为说明KitDB的性能级别 ## Requirements 编译要求:JDK 8+和Maven 3.2.5+ ## Documents http://kitdb.top/ ## Explain store模块为KitDB本体,raft模块为官方Raft协议插件