 推荐学习书目
› Python Cookbook
推荐学习书目
› Python Cookbook|  |      188250      2012-07-17 10:44:43 +08:00 定时任务、队列和普通客户端请求超时控制是不一样的哦。 | 
|  |      2sohoer OP @88250 客户端请求还是60秒,队列,定时任务是动态控制的吗,好像在文档哪里看到回头又找不到了 GAE还是经常抽风,抛出些异常查都不好查 | 
|  |      388250      2012-07-17 14:54:59 +08:00  1 普通客户端请求超时是 60 秒,定时任务和队列是 10 分钟。 看一下发布公告:https://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes | 
|  |      4sohoer OP @88250  Version 1.4.0 - December 02, 2010 The deadline for Task Queue and Cron requests has been raised to 10 minutes. Datastore and API deadlines within those requests remain unchanged. 还真难找,现在队列中的代码都是设置的40秒操时,赶紧改了,呵呵! | 
|  |      588250      2012-07-17 15:37:49 +08:00 P.S.  看一下这里:https://developers.google.com/appengine/docs/java/runtime#The_Request_Timer 可以用 ApiProxy.getCurrentEnvironment().getRemainingMillis() 这个 API 获取当前请求剩余时间,方便做一些动态调整。 |