node.js を使用して Redis クライアントをデバッグする方法は複数あります。
まず、Redis モニター機能を利用して、Redis サーバーが受信したすべてのコマンドをログに記録できます。
> src/redis-cli monitor
OK
1371134499.182304 [0 172.16.222.72:51510] "info"
1371134499.185190 [0 172.16.222.72:51510] "zinterstore" "tmp" "2" "red,round"
Redis が受け取った zinterstore コマンドの形式が正しくないことがわかります。
次に、スクリプトに次の行を追加して、node_redis のデバッグ モードをアクティブ化できます。
redis.debug_mode = true;
実行時に Redis プロトコルを出力します。
Sending offline command: zinterstore
send ncegcolnx243:6379 id 1: *4
$11
zinterstore
$3
tmp
$1
2
$9
red,round
send_command buffered_writes: 0 should_buffer: false
net read ncegcolnx243:6379 id 1: -ERR syntax error
その後、node.js debuggerを使用できます。次の方法でコードにデバッガー ブレークポイントを配置します。
function search(tags, page, callback) {
debugger; // breakpoint is here
client.ZINTERSTORE("tmp", tags.length, tags, function(err, replies){
console.log(err);
console.log(replies);
callback('ok')
});
}
その後、デバッグ モードで node を使用してスクリプトを起動できます。
$ node debug test.js
< debugger listening on port 5858
connecting... ok
break in D:\Data\NodeTest\test.js:1
1 var redis = require("redis");
2 var client = redis.createClient( 6379, "ncegcolnx243" );
3
debug> help
Commands: run (r), cont (c), next (n), step (s), out (o), backtrace (bt), setBreakpoint (sb), clearBreakpoint (cb),
watch, unwatch, watchers, repl, restart, kill, list, scripts, breakOnException, breakpoints, version
debug> cont
break in D:\Data\NodeTest\test.js:8
6 function search(tags, page, callback) {
7
8 debugger;
9 client.ZINTERSTORE("tmp", tags.length, tags, function(err, replies){
10 console.log(err);
... use n(ext) and s(tep) commands ...
コードをステップ実行すると、タグがシリアル化され、一意のパラメーターとして処理されるため、コマンド配列が正しくないことがわかります。
次のようにコードを変更すると、問題が修正されます。
var cmd = [ "tmp", tags.length ];
client.zinterstore( cmd.concat(tags), function(err, replies) {
...
});