TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

nessDB:a very fast key/value storage engine 1.8-rc1 released

5 点作者 BohuTANG大约 13 年前
Hey, nessDB is a very fast key-value,embedded Database Storage Engine (Using log-structured-merge (LSM) trees) with Level-LRU, Bloom-Filter,and supports Redis-Protocol(PING,SET,MSET,GET,MGET,DEL,EXISTS,INFO,SHUTDOWN).<p>This version, there is a big performance improving, using LSM-Tree. All the magic is in the codes, you can go through it here:https://github.com/shuttler/nessDB<p>1.8-rc1 key features: a) Better performances on Random-Read/Random-Write b) Log recovery c) Using LSM-Tree as storage engine d) Background detached-thread merging e) Level LRU f) Support billion data<p>BohuTANG

2 条评论

opendomain大约 13 年前
How is this different than the more than 100 other NoSQL databases? If it supports the Redis protocol them why can I not choose toUse Redis? Or memcached? I am not trying to shoot this project down - I am just trying to understand all this " not invented here" syndrome.
评论 #3660061 未加载
BohuTANG大约 13 年前
And supports Redis-Protocol(PING,SET,MSET,GET,MGET,DEL,EXISTS,INFO,SHUTDOWN).