Concurrent Work

Rambling of a coder who craves for knowledge and understanding of the world.

20 Jun 2015

2015读书单

Written by Dongfang Qu
今年读的几本书 人文 蝇王 当我谈跑步时我谈些什么 富兰克林自传 三体I、II、III 富爸爸,穷爸爸 科技 Spring in action
03 Jun 2015

java server graceful shutdown

Written by Dongfang Qu
目的 避免kill -9导致内存中数据丢失,导致业务数据不一致的情况 实践 Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { // do sth } }); 参考 1
03 Jun 2015

tomcat连接器选择

Written by Dongfang Qu
推荐 nio2(tomcat 7 only) nio 配置方法 tomcat 8: protocol="org.apache.coyote.http11.Http11Nio2Protocol" tomcat 7: …
13 May 2015

basic guava tutuorials

Written by Dongfang Qu
整理下自己学习guava使用的资料 http://www.tutorialspoint.com/guava/index.htm JavaCachingwithGuava Anoverviewofguavagooglecorelibrariesforjava
25 Jan 2015

kafka producer源码分析

Written by Dongfang Qu
周末闲来无事把前两天看的kafka producer源码工作流程整理了一下,便于后续工作和学习。 kafka producer源码分析