上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页

2021年12月21日

go - http

摘要: https://www.cnblogs.com/wukai66/p/12031603.html 阅读全文

posted @ 2021-12-21 12:06 木林coder 阅读(20) 评论(0) 推荐(0)

2021年11月1日

PHP多进程与信号 pcntl,Signal

摘要: 实例 https://zhuanlan.zhihu.com/p/67915293 https://www.jianshu.com/p/f39130c04a3f https://blog.csdn.net/duzhenxun/article/details/82899001 php多进程开发中常用的P 阅读全文

posted @ 2021-11-01 14:55 木林coder 阅读(52) 评论(0) 推荐(0)

2021年10月21日

docker启动容器端口被占用

摘要: https://www.cnblogs.com/typttxs/p/10764640.html https://blog.csdn.net/weixin_30919235/article/details/101665464 阅读全文

posted @ 2021-10-21 15:18 木林coder 阅读(121) 评论(0) 推荐(0)

2021年10月20日

docker php-fpm 安装swoole扩展

摘要: https://www.cnblogs.com/polax/p/14520769.html 阅读全文

posted @ 2021-10-20 17:30 木林coder 阅读(54) 评论(0) 推荐(0)

2021年10月11日

include_once(): open_basedir restriction in effect

摘要: Warning: include_once(): open_basedir restriction in effect. https://www.jianshu.com/p/bf5dca3f81ec 阅读全文

posted @ 2021-10-11 17:50 木林coder 阅读(77) 评论(0) 推荐(0)

2021年9月7日

服务器断电mysql无法恢复

摘要: https://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html 阅读全文

posted @ 2021-09-07 17:10 木林coder 阅读(33) 评论(0) 推荐(0)

2021年7月15日

svn - linux 命令

摘要: svn --username zhouxin --password 6666 up -R代表回滚整个目录 svn revert -R index.php 阅读全文

posted @ 2021-07-15 17:49 木林coder 阅读(37) 评论(0) 推荐(0)

tortoisesvn下载 和svn 安装 && git 安装

摘要: https://tortoisesvn.net/downloads.zh.html https://blog.csdn.net/u012841414/article/details/123393104 yum安装svn https://www.runoob.com/svn/svn-install.h 阅读全文

posted @ 2021-07-15 10:53 木林coder 阅读(90) 评论(0) 推荐(0)

2021年7月8日

nginx+lua乐观锁实现秒杀

摘要: package.path = '/class_goods/nginx/lua/5.1/lua-redis-cluster-master/?.lua;;/class_goods/nginx/lua/5.1/lua-resty-redis/lib/?.lua;;/class_goods/nginx/lu 阅读全文

posted @ 2021-07-08 10:23 木林coder 阅读(440) 评论(0) 推荐(0)

2021年7月7日

斐波那契数列-PHP

摘要: function getnum($n){ if ($n == 0) return 0; $arr = array(); $arr[2] = $arr[1] = 1; for ($i = 3; $i ⇐ $n; $i++) { $arr[$i] = $arr[$i-1] + $arr[$i-2]; } 阅读全文

posted @ 2021-07-07 21:52 木林coder 阅读(50) 评论(0) 推荐(0)

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页

导航