redis list 类型 队列操作

入队列操作文件 list_push.php

$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
while (true) {
$redis->lPush('list1', 'A_'.date('Y-m-d H:i:s'));
sleep(rand()%3);
}
?>

执行# php list_push.php &

出队列操作 list_pop.php文件
$redis = new Redis();
$redis->pconnect('127.0.0.1', 6379);
while(true) {
try {
var_export( $redis->blPop('list1', 10) );
} catch(Exception $e) {
//echo $e;
}
}
就是这么简单的一段代码,就搞定了

你可能感兴趣的:(redis list 类型 队列操作)