Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 708 Bytes

readme.md

File metadata and controls

23 lines (18 loc) · 708 Bytes

#Redispy Hooks into Redis' monitor command and exposes the parsed information in a usable manner.

A concrete example of how this can be used is in the works. For now, you can use it like:

var redispy = require('redispy');
//0 is the database
spy = new redispy('localhost', 6379, 0);  
spy.on('data', function(data) {
	var command = data.command;
	var date = data.date;
            var keys = data.keys;
	var arguments = data.arguments;
});
spy.start();
...
spy.stop();

Note that the monitor command, which this relies on, is considered a debugging tool. Using it in production will cause performance degradation.

##Installation

npm install redispy