下面是我的代码。我通过线程填充大小为3500000的列表。首先我用一个线程填充列表。此线程将返回包含350万项的字符串列表。
此过程需要5秒钟才能执行。
然后,我创建了另一个Thread并将整个任务分成两部分并将它们分配给线程。
第一个线程将填充1900000个项目的字符串列表,第二个线程将返回(3500000-1900000 = 1600000)个项目。这两个过程并行运行。所以,应该花更少的时间。 但是,对于这种情况,总计算时间也是5秒。
请有人帮助我找出我做错的地方吗?
我非常需要最小化执行时间。我如何才能最大限度地缩短时间?
package callablefutures;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.Calendar;
import java.util.concurrent.TimeUnit;
import java.util.Date;
public class CallableFutures {
private static final int NTHREDS = 10;
public static void main(String[] args) {
ExecutorService executor = Executors.newFixedThreadPool(NTHREDS);
List<Future<List<String>>> list = new ArrayList<Future<List<String>>>();
List<List<String>> lst=new ArrayList();
List<String> list1=new ArrayList();
List<String> list2=new ArrayList();
Runtime rt = Runtime.getRuntime();
long prevFree = rt.freeMemory();
long startTime=System.currentTimeMillis();
Callable<List<String>> worker = new MyCallable(list1,0,1900000);
Future<List<String>> submit = executor.submit(worker);
list.add(submit);
Callable<List<String>> worker1 = new MyCallable(list2,1900000,3500000);
Future<List<String>> submit1 = executor.submit(worker1);
list.add(submit1);
long sum = 0;
System.out.println(list.size());
for (Future<List<String>> future : list) {
try {
lst.add(future.get());
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}
executor.shutdown();
long endTime=System.currentTimeMillis();
System.out.println("Total Time Taken: " + (endTime-startTime)/1000%60 +" Seconds");
System.out.println("Total Memory Taken (MB): " + ((prevFree-rt.freeMemory())/1024)/1024);
}
}
package callablefutures;
import java.util.concurrent.Callable;
import java.util.List;
import java.util.ArrayList;
public class MyCallable implements Callable<List<String>>{
public List<String> StrList=new ArrayList();
public int sIndex,eIndex;
public MyCallable(List<String> oList,int si,int ei)
{
this.StrList=oList;
this.sIndex=si;
this.eIndex=ei;
}
@Override
public List<String> call() throws Exception {
for (int i = this.sIndex; i < this.eIndex; i++) {
this.StrList.add("ID "+i);
}
return this.StrList;
//return this.StrList;
}
}
答案 0 :(得分:0)
您正在创建大约128 MB的数据,这将大于您的L3缓存,因此您将数据推送到主内存,这通常很容易通过一个线程饱和。如果您希望线程同时运行,您希望它们每个限制为256 KB(因为它们各自拥有自己的L2缓存,假设它们运行在不同的核心上),如果在同一核心上,则每个都有128 KB。