Home  >  Article  >  php教程  >  redis---队列操作的例子(php)

redis---队列操作的例子(php)

WBOY
WBOYOriginal
2016-06-13 10:48:311279browse

入队操作

01

02 $redis = new Redis();

03 $redis->connect('127.0.0.1',6379);

04 while(True){

05     try{

06         $value = 'value_'.date('Y-m-d H:i:s');

07         $redis->LPUSH('key1',$value);

08         sleep(rand()%3);

09         echo $value."\n";

10     }catch(Exception $e){

11         echo $e->getMessage()."\n";

12     }

13 }

14 ?>

 

出队操作

01

02 $redis = new Redis();

03 $redis->pconnect('127.0.0.1',6379);

04 while(True){

05     try{

06         echo $redis->LPOP('key1')."\n";

07     }catch(Exception $e){

08         echo $e->getMessage()."\n";

09     }

10     sleep(rand()%3);

11
 }?>
 

 

摘自  zhuangge
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn