nginx的配置文件详解worker_processes24;#指定工作衍生进程数,(一般等于CPU的总核数或者总核数的两倍,例如两个4核CPU,总核数为8)#指定错误日志的存放路径和错误日志级别:[debug|info|notice|warn|error|crit]worker_rlimit_nofile51200#指定文件描述符数量event{useepoll..
分类:
Web程序 时间:
2017-07-25 15:52:02
阅读次数:
144
今日课程:PHP3天基础巩固视频教程【燕十八】1.php错误报告设置/*
php脚本错误,分多个等级,如致命错误,notice(提醒),warning(警告),N多级
如何方便设置报错级别
PHP把不同等级的级别,用数字来表示比如
1E_ERROR(integer)致命的运行时错误。这类错误一般是不可恢复的..
分类:
Web程序 时间:
2017-07-25 01:06:52
阅读次数:
141
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
其他好文 时间:
2017-07-24 09:54:11
阅读次数:
219
Ancient Cipher Description Ancient Roman empire had a strong government system with various departments, including a secret service department. Import ...
分类:
其他好文 时间:
2017-07-22 23:49:25
阅读次数:
227
1、进程间通信当中一种比較简单的方法是管道操作 /* Name : Test.c Author : wangchuan Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style */ ...
分类:
系统相关 时间:
2017-07-22 12:07:44
阅读次数:
183
#定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ] error_log /v ...
分类:
其他好文 时间:
2017-07-22 12:06:02
阅读次数:
222
Find the second max number in a given array. Example Given [1, 3, 2, 4], return 3. Given [1, 2], return 1. Notice : Attention corner case. Communicate ...
分类:
其他好文 时间:
2017-07-21 12:36:35
阅读次数:
136
Given a string which contains only letters. Sort it by lower case first and upper case second. Notice It's NOT necessary to keep the original order of ...
分类:
其他好文 时间:
2017-07-17 15:19:57
阅读次数:
216
3319: 黑白树 Description 给定一棵树,边的颜色为黑或白,初始时全部为白色。维护两个操作:1.查询u到根路径上的第一条黑色边的标号。2.将u到v 路径上的所有边的颜色设为黑色。Notice:这棵树的根节点为1 给定一棵树,边的颜色为黑或白,初始时全部为白色。维护两个操作:1.查询u到 ...
分类:
其他好文 时间:
2017-07-16 19:23:36
阅读次数:
169
题目: Given an array of integers, every element appears three times except for one. Find that single one. Note:Your algorithm should have a linear runti ...
分类:
其他好文 时间:
2017-07-16 15:03:16
阅读次数:
164