上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: 服务器端环境 系统环境 uUbuntu 20.04 php版本 PHP 7.4.3 服务文件 udp_server.php <?php //创建Server对象,监听 0.0.0.0:9501 或 127.0.0.1:9501 端口 (全部ip或本地ip) $server = new Swoole\ 阅读全文
posted @ 2021-08-10 17:54 胡勇健 阅读(50) 评论(0) 推荐(0)
摘要: 服务器端文件 server.php sudo vi server.php <?php //创建Server对象,监听 0.0.0.0:9501 或 127.0.0.1:9501 端口 (全部ip或本地ip) $server = new Swoole\Server('127.0.0.1', 9501) 阅读全文
posted @ 2021-08-10 17:18 胡勇健 阅读(87) 评论(0) 推荐(0)
摘要: 系统环境 uUbuntu 20.04 php版本 PHP 7.4.3 下载swoole4.7.0源码包 git clone https://github.com/swoole/swoole-src.git 进入swoole包 cd swoole-src 生成configure phpize 编译 . 阅读全文
posted @ 2021-08-09 18:21 胡勇健 阅读(73) 评论(0) 推荐(0)
摘要: 安装php-mongodb扩展 sudo apt-get install php-mongodb 查看扩展是否安装 php --ini php测试文件 test_mongo.php <?php //链接mongo $manager = new MongoDB\Driver\Manager("mong 阅读全文
posted @ 2021-08-07 18:33 胡勇健 阅读(107) 评论(0) 推荐(0)
摘要: 查看表索引 show index from school; desc school; 添加普通索引 alter table school add index idx_name(`name`); create index index_name on school(`name`); 添加唯一索引 cre 阅读全文
posted @ 2021-08-07 03:20 胡勇健 阅读(42) 评论(0) 推荐(0)
摘要: 测试数据 db.users.insert([ {"name":"张三","age":18,"sex":"男","status":1,"address":[113,23]}, {"name":"李四","age":20,"sex":"男","status":1,"address":[108,33]}, 阅读全文
posted @ 2021-08-07 02:26 胡勇健 阅读(88) 评论(0) 推荐(0)
摘要: 新建地理空间数据 db.location.insert([ {"name":"广州","location":{"type":"Point","coordinates":[113.23,23.44]}}, {"name":"上海","location":{"type":"Point","coordin 阅读全文
posted @ 2021-08-06 16:50 胡勇健 阅读(66) 评论(0) 推荐(0)
摘要: insert insert db.users.insert([{"name":"张三","age":18,"status":1},{"name":"李四","age":20,"status":0}]); insertOne db.users.insertOne({"name":"王五","age": 阅读全文
posted @ 2021-08-06 15:55 胡勇健 阅读(39) 评论(0) 推荐(0)
摘要: 系统环境 Ubuntu20.04 首先安装gnupg软件包 sudo apt-get install gnupg 导入包管理系统使用的公钥 wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add 阅读全文
posted @ 2021-08-05 02:31 胡勇健 阅读(85) 评论(0) 推荐(0)
摘要: 应用场景 排序列表(分数列表,排行旁) 班级分数列表 zadd class:score:1001 60 xiaoming 85 xiaohong 90 lili 45 lisi 最高分 zrevrangebyscore class:score:1001 +inf 0 limit 0 1 zrevra 阅读全文
posted @ 2021-08-03 23:11 胡勇健 阅读(283) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页