1

我们正在 Heroku 上使用 Play 应用程序。我们在服务器端处理消耗计算,这需要超过 30 秒的请求。在语言环境机器上一切正常。但是在 heroku 上,我们总是得到一个错误代码 H12(请求超时)。

在 play 和 scala (使用 2.1 版本)的情况下是否有针对此问题的任何技巧?

4

1 回答 1

0

Heroku 不支持长期存在的请求。解决这个问题的最好方法是给你的客户一个回调 url 并让他们拉取响应。有一个库可以帮助你做一些事情并为你很好地包装它。它被称为彗星。

这是它的使用示例

public static Result index() {
  // Prepare a chunked text stream
  Chunks<String> chunks = new StringChunks() {

    // Called when the stream is ready
    public void onReady(Chunks.Out<String> out) {
      //Start your long running process here
      out.write("<script>console.log('kiki')</script>");
      out.write("<script>console.log('foo')</script>");
      out.write("<script>console.log('bar')</script>");
      out.close();
    }

  }

  response().setContentType("text/html");

  ok(chunks);
}

可以在此处找到有关使用 play 进行 asyn http 编程的更多信息: http ://www.playframework.com/documentation/2.0/JavaComet

于 2013-04-02T17:20:50.800 回答