上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页

2017年5月19日

mysql 数据表读锁机制详解

摘要: 转自:http://www.cnblogs.com/huangye-dream/archive/2013/07/06/3174725.html 为了给高并发情况下的mysql进行更好的优化,有必要了解一下mysql查询更新时的锁表机制。一、概述MySQL有三种锁的级别:页级、表级、行级。MyISAM 阅读全文

posted @ 2017-05-19 16:19 dongruiha 阅读(322) 评论(0) 推荐(0) 编辑

Nginx中FastCGI配置优化

摘要: 转自 http://www.cnblogs.com/yezhaohui/p/4377662.html 阅读全文

posted @ 2017-05-19 15:15 dongruiha 阅读(247) 评论(0) 推荐(0) 编辑

Nginx+FastCGI到底是谁影响超时时间

摘要: 需求: 一个php程序要跑一段时间,但是时间不确定。 问题: 当该php程序运行超过一段时间被强制断开连接。 PHP本身超时处理 在 php.ini 中,有一个参数 max_execution_time 可以设置 PHP 脚本的最大执行时间,但是,在 php-cgi(php-fpm) 中,该参数不会 阅读全文

posted @ 2017-05-19 15:11 dongruiha 阅读(12393) 评论(0) 推荐(0) 编辑

PHP-PHP-FPM的max_children一些误区

摘要: 转自 http://www.cnblogs.com/JohnABC/p/6230262.html 502排查: 1.FastCGI 进程数是否够用 2.Nginx等待php执行时间fastcgi_connect_timeout 0;fastcgi_send_timeout 0;fastcgi_rea 阅读全文

posted @ 2017-05-19 12:24 dongruiha 阅读(2092) 评论(0) 推荐(0) 编辑

phpfpm开启pm.status_path配置,查看fpm状态参数

摘要: php-fpm配置 pm.status_path = /phpfpm_status nginx配置 server { root /data/www; listen 80; server_name 10.10.20.3; index index.html index.htm index.php; #测 阅读全文

posted @ 2017-05-19 12:18 dongruiha 阅读(1655) 评论(0) 推荐(0) 编辑

lumen路由配置nginx

摘要: nginx配置文件中添加: set $root_path '/data/www/m.domain.com/public'; root $root_path; location / { try_files $uri $uri/ /index.php?$query_string; } 框架目录下的rou 阅读全文

posted @ 2017-05-19 09:32 dongruiha 阅读(3411) 评论(0) 推荐(0) 编辑

2017年5月18日

给php安装openssl扩展

摘要: 转自 http://blog.csdn.net/sinat_23678421/article/details/42217971 阅读全文

posted @ 2017-05-18 15:58 dongruiha 阅读(318) 评论(0) 推荐(0) 编辑

2017年5月17日

php错误机制总结

摘要: 转 http://www.cnblogs.com/yjf512/p/5314345.html 阅读全文

posted @ 2017-05-17 10:52 dongruiha 阅读(102) 评论(0) 推荐(0) 编辑

2017年5月16日

php自定义错误处理函数

摘要: function myErrorHandler($errno, $errstr, $errfile, $errline) { echo "<b>Custom error:</b> [$errno] $errstr\r\n"; echo " Error on line $errline in $err 阅读全文

posted @ 2017-05-16 14:34 dongruiha 阅读(239) 评论(0) 推荐(0) 编辑

2017年5月14日

error_reporting函数引起的error_log配置失效的问题

摘要: 由于项目代码中大量使用了error_reporting(0);导致php.ini中的error_log失效,不记录错误日志, 导致调试起来非常不便,耗费大量的时间,所以在php.ini的配置中禁止掉error_reporting 函数! nginx是一个web服务器,因此nginx的access日志 阅读全文

posted @ 2017-05-14 23:35 dongruiha 阅读(645) 评论(0) 推荐(0) 编辑

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页

导航