摘要:
public int hashCode() { int result = this.name != null ? this.name.hashCode() : 0; result = 31 * result + (this.key != null ? this.key.hashCode() : 0) 阅读全文
摘要:
当使用常规IN时,查询被发送到远程服务器,并且它们中的每个服务器都在运行子查询 IN 或 JOIN 条款,除非每个远程服务器都存有全部数据,否则会造成数据不准确的情况 使用 GLOBAL IN / GLOBAL JOINs,如select * from tablea where xx GLOABL 阅读全文
摘要:
1.采用CountDownLatch来等待线程走完;2.用AtomicReference 对对象封装的原子性,获得多个线程的异常情况 final CountDownLatch countDownLatch = new CountDownLatch(1); final AtomicReference 阅读全文