redis-mass

0.4.0 • Public • Published

redis-mass

Node.js package to encode a sequence of Redis commands into Redis protocol, suitable for mass insertion.

Installation

Via git (or downloaded tarball):

$ git clone git://github.com/almeida/redis-mass.git

Via npm:

$ npm install -g redis-mass

Usage

Mass insertion on Redis

$ redis-mass /path/to/input-file | redis-cli --pipe

Output to console

$ redis-mass /path/to/input-file

Output to file

$ redis-mass /path/to/input-file /path/to/output-file

Running tests

It uses mocha, so just run following command in package directory:

$ npm test

Issues

You can find list of issues using this link.

Requirements

  • Node.js - Event-driven I/O server-side JavaScript environment based on V8.
  • npm - Package manager. Installs, publishes and manages node programs.

Dependencies

  • None.

Development dependencies

  • mocha - Simple, flexible, fun javascript test framework for Node.js.

Examples

Input file (Redis Commands)

SET key1 value1
SADD key2 value1 "value2" "value3"
ZADD "key3" 1 "value3"

Output (Redis Protocol)

*3
$3
SET
$4
key1
$6
value1
*5
$4
SADD
$4
key2
$6
value1
$6
value2
$6
value3
*4
$4
ZADD
$4
key3
$1
1
$6
value3

License

(The MIT License)

Copyright (c) 2013 Thyago Almeida ar.thyagoaa@gmail.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.

Package Sidebar

Install

npm i redis-mass

Weekly Downloads

3

Version

0.4.0

License

none

Unpacked Size

9.56 kB

Total Files

8

Last publish

Collaborators

  • almeida