一,试验环境主机名IP地址角色node1.example.com192.168.86.185node1node2.example.com192.168.86.186node2fs.example.com192.168.86.111fileserver二,配置三台服务器时间同步并修改crontab自动与ntp服务器同步crontab-e*/2****/usr/sbin/ntpdatecn.pool.ntp.org三,编辑/etc/..
分类:
其他好文 时间:
2015-10-23 16:40:27
阅读次数:
281
1.constant+vowelstand upgive upget up2.vowel+vowel2.1 i:/i/ei/ai/oi [j]stay upcarry it2.2 u:/u/eu/au [w]go onhow about3.constant+constant3.1 bus stati...
分类:
其他好文 时间:
2015-10-23 13:25:32
阅读次数:
199
一、IIS:应用程序池队列(Application pool queue,位于HTTP.SYS)这是请求到达IIS后遇到的第一个队列,http.sys收到请求后会将请求放入对应的应用程序池队列,这样可以减少上下文的切换。需要注意的是应用程序池队列虽然是给w3wp进程用的,但它存在于http.sys的...
分类:
Web程序 时间:
2015-10-22 19:11:04
阅读次数:
210
IIS8以下解决方案: 当我们把网站部署在IIS7或IIS6S的时候,每当IIS或是Application Pool重启后,第一次请求网站反应总是很慢,原因大家都知道(不知道可以参考这个动画说明ASP.NET网页第一个Request会比较慢的原因)。所以每次网站更新都会给第一个用户代号不好...
分类:
Web程序 时间:
2015-10-20 21:12:39
阅读次数:
293
In this article we will focus on configuration of the high-concurrency connection pool. For ease of migration for Tomcat users, the configuration has been written to mimic that of?Commons DBCP. T...
分类:
数据库 时间:
2015-10-20 18:00:32
阅读次数:
299
buffer资源下面来谈谈buffer的管理。buffer资源从广义上就是C语言的数组。如下图所示。图 buffer的广义模型在渲染管线中,无论是opengl还是dx或者其他的渲染api,都会提供下列的buffer类型。vertex buffer,index buffer,constant buff...
分类:
其他好文 时间:
2015-10-19 22:25:44
阅读次数:
247
修改php的监听方式未监听端口 输入 vim /etc/php5/fpm/pool.d/www.conf 找到行 listen = /var/run/php5-fpm.sock 前面添加分号;注释掉这一行 然后在下面添加新行 listen = 127.0.0.1:9000 表示...
分类:
Web程序 时间:
2015-10-18 20:00:14
阅读次数:
304
1.加载commons-pool-1.5.6.jar、java_memcached-release_2.6.6.jar、slf4j-api-1.6.1.jar、slf4j-simple-1.6.1.jar2.创建memcached工具类:[java] view plaincopypublicclas...
分类:
编程语言 时间:
2015-10-18 06:34:24
阅读次数:
211
String str0 = "abc";String str1 = new String("abc");第一句执行后,会在String pool中创建一个"abc",str0引用这个pool里的"abc"。第二句执行后,首先程序会到String pool里看有没有"abc",若没有,则创建一个"ab...
分类:
其他好文 时间:
2015-10-18 01:09:20
阅读次数:
232
题目:
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant...
分类:
其他好文 时间:
2015-10-17 12:16:08
阅读次数:
179