Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlos8f/haredis-tmp
quick redis server cluster for testing or ephemeral data
https://github.com/carlos8f/haredis-tmp
Last synced: 13 days ago
JSON representation
quick redis server cluster for testing or ephemeral data
- Host: GitHub
- URL: https://github.com/carlos8f/haredis-tmp
- Owner: carlos8f
- Created: 2013-06-18T00:15:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-18T17:36:00.000Z (over 11 years ago)
- Last Synced: 2024-10-09T02:53:00.263Z (about 1 month ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
haredis-tmp
===========quick redis server cluster for testing or ephemeral data
[![build status](https://secure.travis-ci.org/carlos8f/haredis-tmp.png)](http://travis-ci.org/carlos8f/haredis-tmp)
## Usage
```js
var tmp = require('haredis-tmp');tmp([6380, 6381, 6382], function (err, p, shutdown, servers) {
// if no err, there is now a redis-server running on each port,
// with data dirs contained in the folder `p`,
// which can be shutdown by calling `shutdown(cb)`,
// and child processes accessed via the object hash `servers`.
// shutdown() automatically called on process exit, and ALL data is cleaned up!
});
```## CLI version
```
$ npm install -g haredis-tmp
$ haredis-tmp 6380 6381 6382 [etc...]
haredis-tmp cluster started: /tmp/haredis-tmp-pD6CWUZw
```- - -
### Developed by [Terra Eclipse](http://www.terraeclipse.com)
Terra Eclipse, Inc. is a nationally recognized political technology and
strategy firm located in Aptos, CA and Washington, D.C.- - -
### License: MIT
- Copyright (C) 2013 Carlos Rodriguez (http://s8f.org/)
- Copyright (C) 2013 Terra Eclipse, Inc. (http://www.terraeclipse.com/)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.