全部博文(362)
发布时间:2013-02-18 06:22:16
http://dev.mysql.com/doc/refman/5.0/en/gone-away.htmlC.5.2.9. MySQL server has gone awayThis section also covers the related Lost connection to server during query error.The most common reason for the MySQL server.........【阅读全文】
发布时间:2013-02-18 05:42:58
Linux服务器内存释放在有些人看起来好像可以提高不少的效率,但是它实际的工作效果并不是很理想,这里我们说一下如何进行这份工作,帮助我们更好的去理解Linux系统的工作方式。大众释放内存方法1. 首先使用free -m查看剩余内存view plaincopy to clipboardprint?linux-8v2i:~ # free -mtotal used fr.........【阅读全文】
发布时间:2013-01-30 22:37:56
#!/usr/bin/perl#author: zhengsenlin#date: 2013-01-30#desc: test program fiveuse strict;use warnings;@ARGV = qw(a);while () {print;}......【阅读全文】
发布时间:2013-01-30 22:28:11
(一)单行注释: 以#开头的行都被perl认为是注释。但是有一个例外,perl程序的第一行是#开头的,他指定了perl程序的解释器。例如:#print 1; (二)多行注释:最常用的方法是使用 POD(Plain Old Documentations) 来进行多行注释。方法如下:=podcodes to co.........【阅读全文】