Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kisom/drunken-dangerzone
In-memory key-value store with a REST API.
https://github.com/kisom/drunken-dangerzone
Last synced: 18 days ago
JSON representation
In-memory key-value store with a REST API.
- Host: GitHub
- URL: https://github.com/kisom/drunken-dangerzone
- Owner: kisom
- License: isc
- Created: 2013-04-05T05:45:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-02T02:54:13.000Z (over 10 years ago)
- Last Synced: 2024-10-11T02:47:12.611Z (about 1 month ago)
- Language: Common Lisp
- Homepage:
- Size: 131 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## :DRUNKEN-DANGERZONE
This is a simple in-memory key value store with a REST API interface. It
was written to learn play with web development in Common Lisp. Haters are
welcome. There is a [Go analogue](https://github.com/gokyle/drunken_dangerzone),
and a [Clojure analogue](https://github.com/kisom/clj-drunken-dangerzone)
as well.### DRUNKEN-DANGERZONE? WHAT KIND OF NAME IS THAT?
It was recommended by the Github project name generator.### DEPENDENCIES
* This has only been tested using sbcl.
* You need to have quicklisp installed and loaded (i.e. via your .sbclrc)
before running this.### RUNNING
0. Load the server with `sbcl --load drunken-dangerzone.lisp`
0. At the REPL, enter `(run)`.
0. By default, the server runs on port 8080. To change this,
`(setf *port* )`.### LICENSE:
DRUNKEN-DANGERZONE is released under the ISC license.Copyright (c) 2013 Kyle Isom
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.