public abstract class PoolEntry<T, C> { private final String id; private final T route; //路由 private final C conn; //http连接 private final long created; //创建时间 private final long validityDeadline; private long updated; private long expiry; private vo…
1. 线程池可以节省创建多个线程带来的开销问题. 2. 线程池的参数如下: public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { this(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, Execut…
java5中新增了可变参数,这个可变参数和C语言中的用法是差不多,但实现起来却不一样. 下面我们一起来看看吧. 其实可变参数就是一个数组 class A{ public void func(int... argum){ for(int i = 0;i < argum.length;i++){ System.out.println(argum[i]); } } } 而且定义起来相当的简单,只需要在类型后面打上三个. 就行. 下面来看看具体使用 public class Main { public…
Linux命令ps: (Process Status的缩写)该命令常常用来用来列出系统中当前运行的进程.ps是显示瞬间进程的状态,并不动态连续:如果想对进程进行实时监控应该用top命令 -a 显示所有终端机下执行的进程,除了阶段作业领导者之外. a 显示现行终端机下的所有进程,包括其他用户的进程. -A 显示所有进程. -c 显示CLS和PRI栏位. c 列出进程时,显示每个进程真正的指令名称,而不包含路径,参数或常驻服务的标示. -C<指令名称> 指定执行指令的名称,并列出该指令的进程的状况…
table 表 --> chain 链 --->rule 规则Commands:Either long or short options are allowed. --append -A chain 添加规则到链上 [!]--proto -p proto 指定过滤的协议tcp udp icmp all [!]--source -s address[/mask][...]指定源地址 [!] --destination -d address[/mask][...]指定目标地址 [!] --in-i…
innobackupex 相关语法讲解 连接服务器 The database user used to connect to the server and its password are specified by the --user and --password option $ innobackupex --user=DBUSER --password=SECRET /path/to/backup/dir/ $ innobackupex --user=LUKE --password=US3…