redisparse

0.2.1 • Public • Published

Build Status

redisparse

Streaming Redis response parser.

Does not do any data buffering or bail out on incomplete input data. Every chunk is processed separately.

API is mostly compatible with mranney/node_redis with added support for partial replies.

Installation

npm install redisparse

Usage

var Parser = require('redisparse').Parser
var parser = new Parser
parser.execute(data)

new Parser([options])

options.return_buffers - Return buffers for replies.

execute(buffer)

Input binary redis response data to the parser.

Events

reply - Result for a command. Type depends on command. Can be string, buffer, integer, array or null.

reply partial - Same as reply but more replies are coming.

reply error - Redis command error.

error - Parsing error. Invalid data.

Readme

Keywords

none

Package Sidebar

Install

npm i redisparse

Weekly Downloads

361

Version

0.2.1

License

MIT

Last publish

Collaborators

  • tonistiigi