上一页 1 2 3 4 5 6 7 8 9 10 ··· 55 下一页
漫画:什么是HashMap 参考: HashMap源码解析 美团技术团队:Java 8系列之重新认识HashMap Read More
posted @ 2017-11-09 18:18 等风来。。 Views(494) Comments(0) Diggs(0) Edit
要理解红黑数,先要了解二叉查找树,二叉查找树(BST)具备什么特性呢? 1.左子树上所有结点的值均小于或等于它的根结点的值。 2.右子树上所有结点的值均大于或等于它的根结点的值。 3.左、右子树也分别为二叉排序树。 下图中这棵树,就是一颗典型的二叉查找树: 1.查看根节点9: 2.由于10 > 9, Read More
posted @ 2017-11-09 18:04 等风来。。 Views(371) Comments(0) Diggs(0) Edit
1.磁盘I/O那些事 2.kafka文件存储那些事 3.消息队列设计精要 4. MySQL索引原理及慢查询优化 建索引的几大原则 1.最左前缀匹配原则,非常重要的原则,mysql会一直向右匹配直到遇到范围查询(>、<、between、like)就停止匹配,比如a = 1 and b = 2 and Read More
posted @ 2017-11-07 17:17 等风来。。 Views(348) Comments(0) Diggs(0) Edit
SOCK is a TCP/IP level proxy protocol, not HTTP. It is not supported by HttpClient out of the box. One can customize HttpClient to establish connectio Read More
posted @ 2017-11-02 15:39 等风来。。 Views(343) Comments(0) Diggs(0) Edit
入口ByteBuffer.allocateDirect public static ByteBuffer allocateDirect(int capacity) { return new DirectByteBuffer(capacity); } DirectByteBuffer构造函数 Dire Read More
posted @ 2017-11-02 14:56 等风来。。 Views(1412) Comments(0) Diggs(0) Edit
一、直观感受 echo '--help' | cat echo的输出通过管道定向到cat的输入, 然后cat从其标准输入中读取待处理的a56爆大奖在线娱乐内容, 输出结果: echo '--help' | xargs cat 等价于 cat --help, xargs将其接受的字符串 --help 变成cat的参数 Read More
posted @ 2017-11-01 13:52 等风来。。 Views(314) Comments(0) Diggs(0) Edit
原因 shell shell是一个命令解析器 所谓shell是一个交互式的应用程序。 shell执行外部命令的时候,是通过fork/exec生成一个子进程,然后执行这个程序。 sudo sudo 是a56爆大奖在线娱乐程序sudo的意思是,以别人的权限生成一个进程,并运行程序。 cd type用来区分某个命令到底是 Read More
posted @ 2017-10-30 17:46 等风来。。 Views(2982) Comments(0) Diggs(0) Edit
一、MinorGC 一个新对象会被放到eden空间,当eden空间满了的时候,MinorGC就会执行,任何存活的对象,都从eden空间复制到to survivor空间,任何在from survivor空间里面的存活对象也会被复制到to survivor。 MinorGC结束的时候,eden空间和“f Read More
posted @ 2017-10-28 17:23 等风来。。 Views(1152) Comments(0) Diggs(0) Edit
1. 概括 已关闭/打开的配置 模块 模块名与subsystem的对应关系: 设置监控变量 mysql> show variables like "%monitor%"; +————————–+——-+ | Variable_name | Value | +————————–+——-+ | inno Read More
posted @ 2017-10-28 15:20 等风来。。 Views(843) Comments(0) Diggs(0) Edit
That is because your web application has a memory leak. A common issue are "PermGen" memory leaks. They happen because the Classloader (and the Class Read More
posted @ 2017-10-28 14:23 等风来。。 Views(190) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 9 10 ··· 55 下一页
------------------------------------------------------------------------------------------------------------ --------------- 欢迎联系 x.guan.ling@gmail.com--------------- ------------------------------------------------------------------------------------------------------------