0

我想为 blobstore 文件创建拇指。我使用代码:

String servingUrl = ImagesServiceFactory.getImagesService().getServingUrl(ServingUrlOptions.Builder.withBlobKey(new BlobKey(blobKey)).imageSize(100).secureUrl(false));

它工作正常。但是,当我需要为每个请求创建多个 thums 时,我会遇到异常:

com.google.apphosting.api.DeadlineExceededException: This request (2b0af6acab1f5e18) started at 2012/10/11 21:53:57.444 UTC and was still executing at 2012/10/11 21:54:57.017 UTC.

也许有人有这个问题的解决方案。请帮忙!

4

1 回答 1

1

任务队列是为像这样长时间运行的任务设计的,你应该研究一下。

https://developers.google.com/appengine/docs/java/taskqueue/overview?hl=en

于 2012-10-12T02:30:50.190 回答