我正在测试接收Job对象的服务器应用程序,为此我创建了一个虚拟客户端,它尽可能多地向我的服务器应用程序发送作业对象,为此我创建了一个Timer类,如下所示发送Job持续对象到服务器。例如每秒2000个物体。但是当我每秒超过2000个工作时,我的客户变得很慢。
有没有其他方法可以向服务器发送大量固定数量的作业?
如果我创建了许多计时器实例,那么我必须同步Socket,这又会让事情变得缓慢。
有没有更好的解决方案可以帮助解决这个问题,我可以将数千个作业发送到服务器而不会让事情变得缓慢?
这里给出的代码是Job等的骨架,我只想知道其他替代方案。
package comeOn;
import java.awt.event.ActionListener;
import javax.swing.Timer;
import java.io.*;
import java.awt.event.ActionEvent;
public class LoadGenerator extends Timer implements ActionListener{
ObjectOutputStream outStream=null;
int rndNumber;
public static void main(String[] args) {
// TODO Auto-generated method stub
}
public LoadGenerator(int interval, ObjectOutputStream outStream,int rndNumber){
super(interval,null);
this.outStream=outStream;
this.rndNumber=rndNumber;
addActionListener(this);
//this.setInitialDelay(1000);//start this timer afer 1 second.
}
@Override
public void actionPerformed(ActionEvent e){
try {
for(int i=1;i<=rndNumber;i++){
Job job=new Job(100);
outStream.writeObject(job);
outStream.reset();
outStream.flush();
}
}
catch(Exception ex){}
}
class Job{
int amount;
Job(int amount){
this.amount=amount;
}
}
}
答案 0 :(得分:0)