码迷,mamicode.com
首页 > 其他好文 > 详细

swoole table

时间:2019-06-07 00:16:01      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:com   内存   moc   img   class   div   column   name   ima   

技术图片

技术图片

 

  • swoole_table
#在内存中建立一张表,用来存放进程交互过程中使用的数据,与memocache似有异曲同工之妙
#用法
<?php
$table = new swoole_table(2048);
$table->column("id",$table::TYPE_INT,4); #为内存表添加列
$table->column("name",$table::TYPE_STRING,32);
$table->column("age",$table::TYPE_INT,4);
$table->create(); #创建内存表
$table->set("cpc",["id"=>1,"name"=>"陈培昌","age"=>22]);
$table->set("cj",["id"=>2,"name"=>"程劲","age"=>16]);

$table->decr("cpc","age",1); #增加某一列的值
$table->incr("cj","age",2); #扣减某一列的值
if ($table->exist("cpc")) #判断键名是否存在
{
print_r($table["cpc"]);

}
if ($table->exist("cj"))
{
print_r($table->get("cj"));
}
?>

 

swoole table

标签:com   内存   moc   img   class   div   column   name   ima   

原文地址:https://www.cnblogs.com/saintdingspage/p/10987348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!