摘要:
https://www.jianshu.com/p/c449f152b5c5 阅读全文
摘要:
https://blog.csdn.net/qq_41181619/article/details/81407289 阅读全文
摘要:
https://blog.csdn.net/yjl33/article/details/76177826 阅读全文
摘要:
https://blog.csdn.net/camhan/article/details/73368563 阅读全文
摘要:
主要说下读写分离, 当我们的数据量很大时,数据库服务器的压力变大,这时候我们需要从架构方面来解决这一问题,在一个网站中读的操作很多,写的操作很少,这时候我们需要配置读写分离,把读操作和写操作分离出来,最大程度的利用好数据库服务器。 读写分离的实现原理就是在执行SQL语句的时候,判断到底是读操作还是写 阅读全文
摘要:
1.executor接口,使用executor接口的子接口ExecutorService用来创建线程池2.Lock接口下的ReentrantLock类,实现同步,比如三个线程循环打印ABCABCABC...3.atomic包,使用AtomicInteger类的incrementAndGet()方法来 阅读全文
摘要:
https://blog.csdn.net/u013278314/article/details/83210710 阅读全文
摘要:
https://blog.csdn.net/jingzi123456789/article/details/78004074 阅读全文
摘要:
https://www.xuebuyuan.com/3243778.html 阅读全文