Java Concurrency in Practice :
1. Thread Confinement的几种形式保证Thread Safe
Single Threaded, GUI
Ad-hoc, Connection Pool,一个Connection同一时刻只会出现在一个Thread中
Stack Confinement, 为什么局部变量是Thread Safe的
ThreadLocal
Instance Confinement, synchronize
Shared read-only
一个可写,其他可读之类
2. GUI应用如Swing, Event Dispatch Thread就是Single Threaded, 要区分Long-running GUI Tasks,界面卡就是因为没有把这个放到另外的一个线程中去,Section 9.3有很好的解释,jdk1.6新增SwingWorker支持,很不错
3. Section 5.6, Building an Efficient, Scalable Result Cache非常精彩,和工作中实现的一个Result Cache十分类似,ConcurrentHashMap的运用,尤其是运算工作量大的时候,FutureTask的使用非常的妙。Runnable和Callabe接口,
Future接口
4. Blocking Queues的使用,Section 6.2提到了“In Chapter 5 , we saw how to use bounded queues to prevent an overloaded application from running out of memory.” 这句话, 意思是可以做到防止过载导致Out of Memory.
5. Executor接口, Most server applications offer a natural choice of task boundary:: individual client requests,任务边界是一次请求。Executor Lifecycle,生命周期,
6. 线程池相关的概念
7. Cancellation and Shutdown,Interruption的妙用等等
8. 不可变量,与线程安全。Immutability
印象比较深的是1,2,3,4,才看到Part III,发现工作中遇到的和解决的问题,都有现有的或更好的方案,还需要深入研究,感觉这本书非常的不错。