- 浏览: 16345 次
最新评论
文章列表
(转) http://www.cnblogs.com/chenjianjx/archive/2012/08/14/2637914.html
感谢作者分享。
介绍MySQL Jdbc驱动的rewriteBatchedStatements参数
MySQL Jdbc驱动在默认情况下会无视executeBatch()语句,把我们期望批量执行的一组sql语句拆散,一条一条地发给MySQL数据库,直接造成较低的性能。
只有把rewriteBatchedStatements参数置为true,
(via: http://dreamhead.blogbus.com/index_4.html)
缘起
在Java里,为了启动一个线程,我们要创建一个实现Runnable接口的类:
public class MyParallelComputer implements Runnable { pulbic void run() { ... }}
new Thread(new MyRunner()).start();
再有,为了响应一个按钮的事件,我们要创建一个ActionListener接口的类:
button.add(new ActionListener() { ...
#来源淘测试(http://www.taobaotest.com/blogs/2151)
系统上线后,最简单的要关注的性能指标:机器级别的:cpu、load、memory
jvm级别的:进程、内存 、GC
一、先说机器级别的,常用的命令有:uptime /top /ps
1、【Uptime】:系统开机运转到现在经过的时间、连线的使用者数量、最近一分钟,五分钟和十五分钟的系统负载。
范例:如下图
说明:
16 day
Matrix param的做法是你可以在uri 的path segmen中嵌入任意个数个name 和value的键值对。下边是一个例子
GET http://host.com/library/book;name=EJB 3.0;author=Bill Burke
Matrixparameters的基本思想是 这些参数代表了一个资源。 @MatrixParam 的声明允许你在uri中传入参数,以供方法调用使用。
@HeaderParam的声明允许你将request http header映射到你所调用的方法中
GET/books?num=5
@GET
@QueryParam的声明允许将一个uri的查询字符串参数,或者url编码形式的参数映射到你的方法调用中。
GET/books?num=5
zookeeper ACL digest
List<ACL> acls = new ArrayList<ACL>(1);
String authentication_type = "digest";
String authentication = "mahadev:some";
for (ACL ids_acl : Ids.CREATOR_ALL_ACL) {
acls.add(ids_acl);
}
ZooKeeper zoo = new ZooKeeper("1.1.1.1&q ...