Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honza/rediclus
A simple Redis clone in Clojure
https://github.com/honza/rediclus
Last synced: about 5 hours ago
JSON representation
A simple Redis clone in Clojure
- Host: GitHub
- URL: https://github.com/honza/rediclus
- Owner: honza
- License: bsd-2-clause
- Created: 2013-07-18T12:36:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-18T12:36:13.000Z (over 11 years ago)
- Last Synced: 2024-04-16T01:44:55.947Z (7 months ago)
- Language: Clojure
- Size: 102 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Rediclus
========*a learning exercise*
A simple Redis clone written in Clojure. It implements the `get` and `set`
commands using the Redis TCP protocol.Running
-------$ lein run
# Or to run on a certain port
$ lein run 12345Usage
-----Start the server and then open the `redis-cli` console and start playing:
$ redis-cli
$ redis 127.0.0.1:6379>
$ redis 127.0.0.1:6379> set name honza
$ OK
$ redis 127.0.0.1:6379> get name
$ "honza"Benchmark
---------Non-parallel get requests in ms:
Iterations: 5000
95th percentile: 0.241041183472
99th percentile: 0.285148620605
min: 0.165939331055
max: 1.68514251709License
-------BSD, short and sweet