私のアプリケーションでは、node.js を redis データベースで使用しています。多くの json オブジェクトを redis に保存するにはどうすればよいですか。
db.save({
description:'sdsd',userId:'324324',url:'http://www.abc.com/abc.html',appId:'123456'
}, function (err, res) {
if(err){
console.log(err);
return;
}
else{
console.log(res);
}
});
ソファ db では、上記のコードを使用して、json オブジェクトをドキュメントとして何度も保存できます。redis でこれを行う方法。ドキュメントから、以下のコードで json オブジェクトを保存することがわかりました。
client.hmset("hosts", "mjr", "1", "another", "23", "home", "1234");
繰り返しますが、他のjsonオブジェクトを以下のように同じ「ホスト」に保存したい
client.hmset("hosts", "mjr", "2", "another", "33", "home", "1235");
これどうやってするの。