ZK - 在谷歌应用程序引擎上运行会超时
我有一个测试页,其中包含 100 个项目的列表。 当我每次向下滚动列表时都会弹出此超时错误。 ZK有解决办法吗?
没有什么特别的,只是一个包含 100 个测试行的列表。
I have a test page with a list of 100 items.
When I scroll the list down every time this timeout error pops up.
Is there a fix for this in ZK?
There is nothing else special just a list with 100 test rows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会做出有根据的猜测,这是因为您在内存中存储了一些状态(可能是“该用户在哪个页面上”),并期望它在下一个请求中出现。在 App Engine 中,情况并非如此。至少有 3 种方法可以解决这个问题:
I'll make an educated guess that this is because you're storing some state (maybe "what page is this user on") in memory and expecting it to be around on the next request. In App Engine, it won't be. There are at least 3 ways around this:
更新:
在 zk docs 上,它说要使用:
但是当我注释掉这一行时:
错误消失了!
UPDATE:
On zk docs it says to use:
But when I comment this line out:
The error goes away!