降低数据库查询压力(缺点:增大内存消耗)

2021/12/23 19:12:05

本文主要是介绍降低数据库查询压力(缺点:增大内存消耗),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

//线程定义
int thread = 3;
ExecutorService executorService = Executors.newFixedThreadPool(thread);
final CountDownLatch countDownLatch = new CountDownLatch(thread);
//线程执行
executorService.submit(new Callable<Object>() {
    @Override
    public Object call() throws Exception {
        AMapper.select();
        countDownLatch.countDown();
        return null;
    }
});
executorService.submit(new Callable<Object>() {
    @Override
    public Object call() throws Exception {
        BMapper.select();
        countDownLatch.countDown();
        return null;
    }
});
executorService.submit(new Callable<Object>() {
    @Override
    public Object call() throws Exception {
        CMapper.select();
        countDownLatch.countDown();
        return null;
    }
});
try {
    countDownLatch.await();
   //组装数据
} catch (InterruptedException e) {
    e.printStackTrace();
}


这篇关于降低数据库查询压力(缺点:增大内存消耗)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程