码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
Android进程和线程
翻译自:https://developer.android.com/guide/components/processes-and-threads.html#Processes 一直觉得看任何书都不如看Android官方文档,权威又全面,全是干货! 进程和线程 当某个应用组件启动且该应用没有运行其他任何组件时,Android 系统会使用单个执行线程为应用启动新的 Lin...
分类:移动开发   时间:2016-06-03 19:35:01    阅读次数:276
nginx配置文件详解
文章转载自:http://www.ha97.com/5194.html #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info | notice ...
分类:其他好文   时间:2016-06-02 19:40:30    阅读次数:209
Linux命令:ps / top
简介:ps - report a snapshot of the current processes. 用途:获取当前时刻程序运行状态 概要:ps [options] 类型:ps is hashed (/bin/ps) 说明: ps获取到的是某一时刻程序运行状态的静态信息,如果想要动态获取程序运行信 ...
分类:系统相关   时间:2016-06-02 18:03:55    阅读次数:213
ORACLE如何查看修改连接数,进程数及用户数,三者之间关系
SQL> select count(*) from v$session #连接数SQL> Select count(*) from v$session where status='ACTIVE' #并发连接数SQL> show parameter processes #最大连接 process:这个 ...
分类:数据库   时间:2016-06-01 21:09:20    阅读次数:221
main Runloop
1.An app’s main run loop processes all user-related events 2.The UIApplication object sets up the main run loop at launch time and uses it to process ...
分类:其他好文   时间:2016-05-31 22:18:41    阅读次数:157
Gearman 分布式的异步任务分发框架
What is Gearman? Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the wor ...
分类:其他好文   时间:2016-05-31 13:40:16    阅读次数:298
【摘自张宴的"实战:Nginx"】使用nginx的fastcgi_cache缓存php输出的内容
fastcgi_cache虽然可以缓存生成的php输出的文件,但是有个弊端,在缓存的失效时间之内,你继续访问这个地址,输出的内容没有发生变化,即使数据库新增了数据或者删除了数据,所以不适合来做即时的数据查询; #user nobody;worker_processes 1; error_log lo ...
分类:Web程序   时间:2016-05-27 16:49:27    阅读次数:186
【摘自张宴的"实战:Nginx"】使用nginx的proxy_cache模块替代squid
#user nobody;worker_processes 1; error_log logs/static_source.error.log;#error_log logs/error.log notice;#error_log logs/error.log info; #pid logs/ngi ...
分类:系统相关   时间:2016-05-27 14:36:54    阅读次数:211
nginx虚拟机的配置
user nginx nginx;worker_processes 1;pid /data/var/run/nginx/nginx.pid;worker_rlimit_nofile 51200; events{ #epoll是多路复用IO中的一种方式 use epoll; #单个后台的work pr ...
分类:其他好文   时间:2016-05-24 20:53:36    阅读次数:154
How to find out which process is listening upon a port
When we covered port scanning a short while ago we discovered how to tell which ports had processes listening upon them, via port scanning. What we di... ...
分类:其他好文   时间:2016-05-24 19:07:36    阅读次数:171
1265条   上一页 1 ... 82 83 84 85 86 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!