playframe 处理高并发请求

http://www.playframework.org/documentation/1.2.1/asynchronous

参考此例子进行优化

 http://www.playframework.org/documentation/1.2.1/jobs

具某同事说,本来并发200就崩溃的 项目(输出到tomcat),使用了以上配置,居然上到接近1000 

下面是部分代码:


 public static void updateLiveData(Integer id, String nv, String f) {
  Promise<String> promise = new LiveResponse(id, nv, f).now();
  String response = await(promise);
  renderText(response);
 }
这是controller的方法

public class AnalysisResponse extends Job<String> {
 private String mid;

 public AnalysisResponse(String mid) {
  this.mid = mid;
 }

 @Override
 public String doJobWithResult() throws Exception {}
}

你可能感兴趣的:(frame)