我是Redis的新手,在看过redis常见问题后,我对hmset有疑问。
似乎hmset是我从mysql DB存储用户行的最佳方式。 所以,如果我从mysql返回一个数组:
array(
'userid' => 1,
'username' => 'test',
'password' => 'example2222',
'health' => 120
);
我怎样才能轻松地将其插入redis hmset或制作一个能够获取结果并从数组中创建hmset的函数?
ETG:
user:1 username test password example2222 health 120
我在想类似的东西。
如果用户ID不存在于redis中 - >从MYsqlDB获取行并使用结果执行redis hmset。
答案 0 :(得分:0)
我使用Predis来存储你的数组,代码经过测试
for (var i = xhrPool.length - 2; i >= 0; i--) {
if (xhrPool[i] instanceof XMLHttpRequest) {
xhrPool[i].abort();
} else {
window.stop();
}
};