譬如 java 里的一个 service,里面有事务
@Service
class ShopService{
@Transactional
public void doTransaction(int type){
List<Customer> customerList = customerDao.getByType(type);
couponDao.assign(customerList);
}
}
我的理解是:
1 java 程序将 customerDao.getByType(type);对应的 mysql 语句通过数据库连接发给数据库
2 数据库产生结果,将 customerList 发给 java 程序
3 java 程序将 couponDao.assign(customerList);对应的 mysql 语句通过数据库连接发给数据库
4 数据库产生结果,将结果发给 java 程序
这样,如果中间结果 customerList 很大的话,网络传输性能损耗比较大
假如如下做法:
@Service
class ShopService{
@Transactional
public void doTransaction(int type){
couponDao.assignCustomersByType(type);
}
}
couponDao.assignCustomersByType(type); 对应两条 mysql 语句,一次性发给数据库去执行,让中间结果在数据库里,这样性能会有显著提升吗?