Fight With Me!!!

导航

2017年7月24日 #

oracle按照时间过滤

摘要: select * from uc.uc_customer a where to_char(a.create_date,'YYYY-MM-DD')>'2017-07-21' 阅读全文

posted @ 2017-07-24 15:48 nickTimer 阅读(1154) 评论(0) 推荐(0) 编辑

Java并发编程之——Amino框架

摘要: Amino框架是一个采用无锁方式实现并行计算的框架,可惜的是,网上关于Amino框架的介绍甚少。根据所掌握的资料,稍微总结一下: 1. 锁机制到无锁机制 锁机制可以确保程序和数据的线程安全,但是锁是一种阻塞式的同步方式,无论是ReentrantLock、synchronized,还是Semaphor 阅读全文

posted @ 2017-07-24 09:24 nickTimer 阅读(552) 评论(0) 推荐(0) 编辑