官方地址:https://www.webpackjs.com/ Concepts At its core, webpack is a static module bundler for modern JavaScript applications. When webpack processes yo ...
分类:
Web程序 时间:
2019-11-06 13:08:46
阅读次数:
117
%user %user表示CPU一共花了多少比例的时间运行在用户态空间或者说是用户进程(running user space processes) 典型的用户态空间程序有:Shells、数据库、web服务器…… %nice %nice表示改变过优先级的进程所占用CPU的百分比 当使用top或者ps命 ...
分类:
其他好文 时间:
2019-11-04 15:26:12
阅读次数:
101
user wls81 wls;worker_processes 5; error_log logs/error.log; pid logs/nginx.pid; events { use epoll; worker_connections 200000; accept_mutex off;} htt ...
分类:
其他好文 时间:
2019-11-04 13:37:44
阅读次数:
106
作者丨阮一峰 http://www.ruanyifeng.com/blog/2013/04/processes_and_threads.html 进程(process)和线程(thread)是操作系统的基本概念,但是它们比较抽象,不容易掌握。最近,我读到一篇材料,发现有一个很好的类比,可以把它们解释 ...
分类:
编程语言 时间:
2019-11-01 16:33:41
阅读次数:
83
#定义 nginx 运行的用户和用户组 user www www; #nginx 进程数,建议设置为等于 CPU 总核心数。 worker_processes 8; #nginx 默认没有开启利用多核 CPU, 通过增加 worker_cpu_affinity 配置参数来充分利用多核 CPU 以下是... ...
分类:
其他好文 时间:
2019-10-28 17:34:00
阅读次数:
70
#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... ...
分类:
其他好文 时间:
2019-10-22 18:40:14
阅读次数:
63
1. 更改uwsgi的配置文件uwsgi.ini 2. 在nginx配置文件中的路由模块添加uwsgi支持. 更改server模块. nginx配置全文: 1 worker_processes 1; 2 events { 3 worker_connections 1024; 4 } 5 http { ...
分类:
其他好文 时间:
2019-10-16 13:11:52
阅读次数:
97
STAT485/685 - Notes 4C STAT485/685 - Notes 4C STAT485/685 - Notes 4CSimulations with AR(1) Processes? To simulate 500 values from Yt = 0.6Yt?1 + et wi ...
分类:
其他好文 时间:
2019-10-13 20:48:45
阅读次数:
104
Spark在集群上的运行模式 http://spark.apache.org/docs/latest/cluster overview.html Component章节 1 Each application gets its own executor processes,所以各application ...
分类:
其他好文 时间:
2019-10-04 23:02:00
阅读次数:
111
;WITH T AS ( SELECT DB_NAME(a.database_id) DBNAME, SUBSTRING([statement],LEN(DB_NAME(a.database_id))+11,LEN([statement])-LEN(DB_NAME(a.database_id))-1 ...
分类:
其他好文 时间:
2019-09-29 16:54:25
阅读次数:
111