美文网首页
swoole内存table测试

swoole内存table测试

作者: zhaoxiaohui520 | 来源:发表于2020-08-21 21:34 被阅读0次
    // 创建内存表
    $table = new swoole_table(1024);
    // 内存表增加一列
    // $name指定字段的名称
    // $type指定字段类型,支持3种类型,Table::TYPE_INT, Table::TYPE_FLOAT, Table::TYPE_STRING
    // $size指定字符串字段的最大长度,单位为字节。字符串类型的字段必须指定$size
    $table->column('id', $table::TYPE_INT, 4);
    $table->column('name', $table::TYPE_STRING, 64);
    $table->column('age', $table::TYPE_INT, 4);
    // 创建
    $table->create();
    //  设置行的数据,Table使用key-value的方式来访问数据
    $table->set('demo', ['id' => 1, 'name' => 'zhangsan', 'age' => 22]);
    //  获取一行数据
    print_r($table->get('demo'));
    
    微信图片_20200821213415.png

    相关文章

      网友评论

          本文标题:swoole内存table测试

          本文链接:https://www.haomeiwen.com/subject/mnipjktx.html