"We use Page.Cache to store temporary data, but we have recently discovered that it causes high memory consumption. The bad thing is that the memory n...
分类:
Web程序 时间:
2014-10-26 01:38:49
阅读次数:
173
My story happened in the winter of 2012, the first year I began to work in Beijing. It was a cold weekend, and I went skiing with two of my coworker.....
分类:
其他好文 时间:
2014-10-26 01:38:41
阅读次数:
142
1:流状态操作:bad,fail,eof,good;流状态:badbit,failbit,eofbit; 2:badbit在第3位,failbit在第2位,eofbit在第1位;第1位是最低位。 3:流的正常输入后,是可以继续输入的,当eof发生时,fail也是跟着发生的,当然相反则不是。通过rds...
分类:
其他好文 时间:
2014-10-25 17:05:01
阅读次数:
172
64系统里执行32位程序: 1、在64系统里执行32位程序如果出现/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory,安装下glic即可sudo yum install glibc.i6862、error while ...
分类:
系统相关 时间:
2014-10-24 18:19:09
阅读次数:
309
一个系统的界限称为阀,其数值称为阀值。sharepoint中每个application都有一个资源阀值,对特定的资源进行限制(List view, List view Lookup,List Unique Permissions),要求各个系统都遵守这些约束来设计。从而保证服务器的资源不会枯竭,保证...
分类:
其他好文 时间:
2014-10-24 16:25:26
阅读次数:
219
504 Gateway Time-out问题所在:所请求的网关没有请求到,简单来说就是没有请求到可以执行的PHP-CGI。一般看来, 这种情况可能是由于nginx默认的fastcgi进程响应的缓冲区太小造成的, 这将导致fastcgi进程被挂起, 如果你的fastcgi服务对这个挂起处理的不好, 那...
分类:
其他好文 时间:
2014-10-23 11:59:58
阅读次数:
275
在使用工具Create Enterprise Geodatabase的时候报错Bad login user,开始怀疑为密码错误,然后反复在plsql中尝试发现并没有错误,很疑惑,然后去官网查询:Error: Bad login userPossible reason you received th....
分类:
数据库 时间:
2014-10-21 19:27:54
阅读次数:
834
在执行一个shell脚本时,遇到了“-bash: ./killSession.sh: /bin/bash: bad interpreter: Text file busy”错误提示,如下所示: [oracle@DB-Server bin]$ ./killSession.sh -bash: ./kil...
分类:
系统相关 时间:
2014-10-20 23:12:36
阅读次数:
311
iptables新版本中有-C选项进行检测。如下: # iptables -C INPUT -p tcp --dport 8080 --jump ACCEPT iptables: Bad rule (does a matching rule exist in that chain?). # echo $? 1 # iptables -A INPUT -p tcp...
分类:
其他好文 时间:
2014-10-20 19:41:26
阅读次数:
155
python的min()函数也可用于比较tuple>>> a = (2,'asv','dfg')>>> b = (3,'gsg','weg')>>> c = (5,'bad','ser')>>> min(a, b, c)(2, 'asv', 'dfg')>>> 这是官方文档min(iterable[...
分类:
编程语言 时间:
2014-10-19 00:01:09
阅读次数:
359