Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Commit

Permalink
edit README file to change db interface
Browse files Browse the repository at this point in the history
  • Loading branch information
BohuTANG committed Oct 23, 2011
1 parent f730c92 commit f220e91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README
Expand Up @@ -7,12 +7,12 @@

Key Features
=============
* Bloom filters for record presence detection
* Level-LRU for hot data caching,improve Random-Read
* Bloom filter for record presence detection
* Level-LRU for hot data caching,improving Random-Read
* Distributable B+Tree-Structured-Indexes
* Background IO for data flush to disk
* Support range queries
* Redis protocols support
* Range query support
* Redis protocol support

Directory Tree
==================
Expand Down Expand Up @@ -43,12 +43,12 @@
b, $make
c, $./nessdb-bench add

If you want to remove all indexes and datas,please use "$make cleanall" shell command.
If you want to remove all indexes&datas,please use "$make cleanall" command.

Start as server
===============
* $./nessdb-server
using redis-cli(or other redis's clients) to do some operations(Now support:PING,SET,GET,DEL commands).
Now you can use redis-cli(or other redis's clients) to do some "COMMAND" operations(Now support:PING,SET,GET,DEL,INFO commands).

Thanks.

Expand Down
1 change: 0 additions & 1 deletion src/request.c
Expand Up @@ -160,7 +160,6 @@ int request_parse(struct request *req)
}
req->argc=atoi(sb);

printf("IIII %d\n",req->argc);
req->argv=(char**)calloc(req->argc,sizeof(char*));
for(i=0;i<req->argc;i++){
int argv_len;
Expand Down

0 comments on commit f220e91

Please sign in to comment.