第5页文章列表
-
使用PHP更新redis失败的一个问题
前几天同事遇到一个更新 redis 失败的问题,我觉得很有意思,背后的技术细节也可以深入挖掘,所以通过本文做个记录。我本人对这个问题也有很多的疑点,希望阅读此文的读者能够解答。代码功能和实现也非常简单:$ip = "localhost"; $port = 24362; $socket=fsockopen($ip,$port,$errno, $errstr); $t1 = microtime(true); $line=""; $arr = range(1,1000); foreach($arr as $K=>$t){ $line="lpush send_mass_mailx {$row}\r\n"; $bool = fwrite($socket,$line); if ($bool === false) { echo $t . "_error\n" ; exit; } } fclose($socket); $t2 = microtime(true); echo '耗时'.round($t2-$t1,4).'秒';
78102021-05-06 14:16:59 - ‹‹ ‹ 1 2 3 4 5 ››