关于tomcat的一个优化问题:
有时候保存大数据量的数据时,tomcat不优化的话,页面会没反应,tomcat后台并不报错,只是提示下面内容:
警告: More than the maximum number of request parameters (GET plus POST) for a s
ingle request ([10,000]) were detected. Any p...
分类:
其他好文 时间:
2014-12-18 13:36:33
阅读次数:
181
I'm trying to create a 2D array to store some values that don't change like this.const int[,] hiveIndices = new int[,] {{200,362},{250,370},{213,410} ...
分类:
其他好文 时间:
2014-12-18 01:37:35
阅读次数:
230
Charlie's ChangeTime Limit:1000MSMemory Limit:30000KTotal Submissions:3176Accepted:913DescriptionCharlie is a driver of Advanced Cargo Movement, Ltd. ...
分类:
其他好文 时间:
2014-12-17 23:57:16
阅读次数:
245
使用客户端登陆ftp 500 OOPS: cannot change directory:/root解决 ? 可以在windows上使用一ftp客户端来尝试进行登录。这个时候一般都会报一个错误。 ? 无效的用户权限错误 ? 删除ftpuser 里面的root和user_li...
分类:
其他好文 时间:
2014-12-16 19:34:44
阅读次数:
156
Linux基本命令--目录的相关操作 常见的处理目录的命令吧: cd:变换目录 pwd:显示目前的目录 mkdir:创建一个新的目录 rmdir:删除一个空的目录 cd (变换目录) cd是Change Directory的缩写,这是用来变换工作目录的命令。注意,目录名称与cd命令之间存在一个空格。...
分类:
其他好文 时间:
2014-12-16 11:41:38
阅读次数:
209
首先明确字符串,数字和元组作为函数参数时是不可变的,但是列表和字典等数据结构却是可以改变的。defchange(n):
n[0]=‘apple‘
names=[‘banana‘,‘pear‘]
n=names[:]
change(n)
printnames,n
[‘banana‘,‘pear‘][‘apple‘,‘pear‘]修改后让原始列表保持不变。假设现在要编写一个存..
分类:
编程语言 时间:
2014-12-16 06:35:10
阅读次数:
279
Tween公式 4个参数t:current time(当前时间)b:beginning value(初始值)c: change in value(变化量)d:duration(持续时间) return (目标点) 1 var Tween = { 2 linear: function (t...
分类:
其他好文 时间:
2014-12-15 15:00:37
阅读次数:
238
执行CHANGE MASTER TO master_host............后报错ERROR 1201 (HY000): Could not initialize master info structure; more error messages can be found in the M...
分类:
数据库 时间:
2014-12-15 15:00:12
阅读次数:
250
select DISTINCT human.tid,log_pv_change.systafftid from human left join human_user on human.tid=human_user.hid left join human_house on human.tid = hu...
分类:
其他好文 时间:
2014-12-15 10:14:40
阅读次数:
176
无法返回引用数据传递包括两种,返回值和参数。很可惜,newlisp的返回值只进行值拷贝,也就是返回副本,并没有方法返回引用。那么看看参数吧,通过参数有两种方法传递引用,一种是通过使用单引号,比如:单引号symbol传递参数引用(define (change-list aList) (push 999 (eval aList)))
(set 'data '(1 2 3 4 5))
; note...
分类:
其他好文 时间:
2014-12-14 20:02:05
阅读次数:
247