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

swoole之内存

时间:2019-07-05 22:48:37      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:string   设置   ring   自动   inf   删除   获取数据   create   column   

一、代码

<?php
// 可以用来数据共享
// 执行完后 自动释放

// 创建内存表
$table = new swoole_table(1024);

// 内存表增加一列
$table->column(‘id‘, $table::TYPE_INT, 4);
$table->column(‘name‘, $table::TYPE_STRING, 64);
$table->column(‘age‘, $table::TYPE_INT, 3);
$table->create();

// 设置数据
$table->set(‘tomInfo‘, [‘id‘=>1, ‘name‘=>‘tom‘,‘age‘=>20]);
$table[‘jerryInfo‘] = [
    ‘id‘=>2,
    ‘name‘=>‘jerry‘,
    ‘age‘=>20
];
$table->incr(‘jerryInfo‘, ‘age‘, 2);
$table->decr(‘jerryInfo‘, ‘age‘, 4);

// 获取数据
print_r($table->get(‘jerryInfo‘));
print_r($table[‘jerryInfo‘]);

// 删除数据
$table->del(‘tomInfo‘);
print_r($table->get(‘tomInfo‘));

 

swoole之内存

标签:string   设置   ring   自动   inf   删除   获取数据   create   column   

原文地址:https://www.cnblogs.com/cshaptx4869/p/11140970.html

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