https://github.com/squallstar/node-redis-namespaces
Redis namespacing for node
https://github.com/squallstar/node-redis-namespaces
Last synced: 2 months ago
JSON representation
Redis namespacing for node
- Host: GitHub
- URL: https://github.com/squallstar/node-redis-namespaces
- Owner: squallstar
- Created: 2015-02-13T12:25:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-13T12:26:10.000Z (over 11 years ago)
- Last Synced: 2025-02-28T20:37:31.253Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-redis-namespaces
**Originally forked from https://github.com/arschles/node-redis-namespace**
Pretty much a clone of [redis-namespace](https://github.com/defunkt/redis-namespace) for node.
# Install
npm install redis-namespaces
# Use
Use this library just as you would [node_redis](https://github.com/mranney/node_redis)
```
var redis_namespaces = require('redis-namespaces');
var client = redis_namespaces.createClient(prefix, port, host, opts);
// Carry on as normal
```