码迷,mamicode.com
首页 > 其他好文 > 详细

数据量大分批执行处理

时间:2017-05-18 11:45:39      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:name   hint   object   list   for   i++   sre   table   .sh   

 

没80条执行一次

int bathInt = 80;
for(int i = 0; i < map.size()/bathInt; i++){
msg.append(pMethod.SHHSREVObject(map.subList(i*bathInt, (i+1)*bathInt),UName,TableName));
}
if(map.size()%bathInt != 0){
msg.append(pMethod.SHHSREVObject(map.subList(map.size()/bathInt*bathInt,
map.size()/bathInt*bathInt+map.size()%bathInt),UName,TableName));
}

数据量大分批执行处理

标签:name   hint   object   list   for   i++   sre   table   .sh   

原文地址:http://www.cnblogs.com/yangpeng-jingjing/p/6872010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!