https://github.com/tj/nedis
Redis server implementation written with nodejs
https://github.com/tj/nedis
Last synced: 9 months ago
JSON representation
Redis server implementation written with nodejs
- Host: GitHub
- URL: https://github.com/tj/nedis
- Owner: tj
- Created: 2011-01-03T00:14:16.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2012-01-11T17:18:06.000Z (about 14 years ago)
- Last Synced: 2025-04-15T06:13:48.034Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.24 MB
- Stars: 131
- Watchers: 6
- Forks: 21
- Open Issues: 7
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
README
# Nedis
Nedis is a (partial) redis implementation written with node. Primarily for fun.
## Installation
$ npm install nedis
## Trying It Out
Since nedis implements the unified redis prototcol, we can use `redis-cli` with nedis! First start the server:
$ nedis-server
Now play with the cli:
$ redis-cli
redis> hmset users:tj email tj@vision-media.ca age 23
OK
redis> hgetall users:tj
1) "email"
2) "tj@vision-media.ca"
3) "age"
4) "23"
redis> keys users:*
1) "users:tj"
redis>
## Booting Nedis
nedis.createServer().listen([port[, host]]);
## Running Tests
$ make test
## Performance
Really non-scientific results of __GET__ / __SET__:
SET
nedis: ops 25048, per second 5009.6
redis: ops 54850, per second 10970
GET
nedis: ops 32729, per second 6545.8
redis: ops 54714, per second 10942.8
## License
(The MIT License)
Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.