我试图为mysql操作和redis操作创建一个基准测试脚本。
以下是我尝试的内容:
1./ List of comment ids with a separate hash of comment JSON Data mapped to comment id
2./ List of comments json data
3./ Sorted set of comments with ranking and json data as mapped value
出于某种原因,mysql不再执行redis,我不明白为什么。 我查询了100条记录。
以下是我的操作(以尝试分隔):
1./ $client->rpush($commentId); $client->hmset($commentId,$data);
2./ $client->rpush($jsonData);
3./ $client->zadd("comments",$i,$jsonData);
这是我的基准脚本:
$client = new Predis\Client($conf);
$st=microtime(true);
// sorted set solution
$dat=$client->zrange("comments",0,100);
// list solution
//$dat=$client->lrange("comments",0,100);
$ft=microtime(true);
$overall=$ft-$st;
echo "REDIS=>".$overall."\n";
$sta=microtime(true);
$st=mysqli_query($dbh,"select SQL_NO_CACHE * from comments where status>0 order by createdate desc limit 0,100");
while($r=mysqli_fetch_assoc($st)){
$dd=$r;
}
$fta=microtime(true);
$overall=$fta-$sta;
echo "MYSQL=>".$overall."\n";
以下是我的redis商店脚本,用于排序集:
$st=mysqli_query($dbh,"select SQL_NO_CACHE * from comments where status>0 order by createdate desc LIMIT 100");
$i=1;
while($r=mysqli_fetch_assoc($st)){
$client->zadd("comments",$i,json_encode($r));
$i++;
}
这是我的redis商店脚本列表:
$st=mysqli_query($dbh,"select SQL_NO_CACHE * from comments where status>0 order by createdate desc LIMIT 100");
$i=1;
while($r=mysqli_fetch_assoc($st)){
$key="comment:$id";
$client->rpush("comments",$key);
foreach($r as $k=>$v){
$client->hset($key,$k,$v);
}
$i++;
}
这是我的redis商店脚本列表,没有指向哈希:
$st=mysqli_query($dbh,"select SQL_NO_CACHE * from comments where status>0 order by createdate desc LIMIT 100");
$i=1;
while($r=mysqli_fetch_assoc($st)){
$key="comment:$id";
$client->rpush("comments",json_encode($r));
}
这是DB Schema:
CREATE TABLE `comments` (
`commentid` int(11) NOT NULL AUTO_INCREMENT,
`parentid` int(11) DEFAULT '0',
`refno` int(11) DEFAULT '0',
`createdate` int(11) DEFAULT '0',
`remoteip` varchar(80) DEFAULT '',
`fingerprint` varchar(50) DEFAULT '',
`locid` int(11) DEFAULT '0',
`clubid` int(11) DEFAULT '0',
`profileid` int(11) DEFAULT '0',
`userid` int(11) DEFAULT '0',
`global` int(11) DEFAULT '0',
`official` int(11) DEFAULT '0',
`legacyuser` int(11) DEFAULT '0',
`mediaid` int(11) DEFAULT '0',
`status` int(11) DEFAULT '1',
`comment` varchar(4000) DEFAULT '',
`likes` int(11) DEFAULT '0',
`dislikes` int(11) DEFAULT '0',
`import` int(11) DEFAULT '0',
`author` varchar(50) DEFAULT '',
PRIMARY KEY (`commentid`),
KEY `comments_locid` (`locid`),
KEY `comments_userid` (`userid`),
KEY `idx_legacyusers` (`legacyuser`),
KEY `profile_index` (`profileid`),
KEY `comments_createdate` (`createdate`),
KEY `compound_for_comments` (`locid`,`global`,`status`),
KEY `global` (`global`),
KEY `status` (`status`),
KEY `locid_status` (`locid`,`status`),
KEY `global_status` (`global`,`status`)
) ENGINE=InnoDB
我们正在使用Redislabs作为我们的redis服务器。
如果我遗漏了任何问题,请告知我们。
答案 0 :(得分:2)
根据以上评论,AWS中托管的远程Redis实例的网络延迟大于本地MySQL实例的延迟。
当然,当您为每个Redis请求添加40-100毫秒的延迟时(取决于您的应用程序与托管的Redis在互联网上的距离),这会使Redis在总请求时间方面显得更慢。