0.0.11 • Published 10 years ago

redisd v0.0.11

Weekly downloads
48
License
-
Repository
github
Last release
10 years ago

Build Status dependency Status devDependency Status NPM version

Redisd

A Redis REST API with basic WebUI

Installation

brew install redis
sudo npm install -g redisd

Startup

/usr/local/opt/redis/bin/redis-server /usr/local/etc/redis.conf >& /tmp/redis.log &
nohup redisd >& /tmp/redisd.log &

Web UI

open http://localhost:8080

REDIS CONFIGURATION

REDIS_URLS  (default: 127.0.0.1:6379)

REST ROUTES

* GET /redis/api/v1/key

	List all keys in redis

* GET /redis/api/v1/key/{key}

	Return the value associated with that key

* POST /redis/api/v1/key

	Generate a UUID to use as KEY and associate the value in redis.
	
* PUT /redis/api/v1/key/{key}

	Create or Modify the value of a key

* DELETE /redis/api/v1/key/{key}

	Remove the key from redis

* DELETE /redis/api/v1/key?force=true

	Remove all keys from redis

* GET /redis/api/v1/status

	Return some basic stats
0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago