如何实现GAE回复延迟?

发布于 2025-01-08 19:54:22 字数 102 浏览 0 评论 0原文

一旦我收到客户端的消息,我不想立即回复,我想等待几秒钟(随机秒数)。我该怎么做呢? (我使用 Channel API,所以这样的延迟对客户端来说应该没问题)

Once I've got a message from the client, I don't want to reply immediately, I want to wait for a few seconds (random number of seconds). How can I do it? (I use Channel API, so such delay should be OK for the client)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝眸 2025-01-15 19:54:22

你可以让线程休眠一段时间:

import thread

...

   thread.sleep(some_number_of_milliseconds)

You can just make the thread sleep for a while:

import thread

...

   thread.sleep(some_number_of_milliseconds)
冬天旳寂寞 2025-01-15 19:54:22

对于 App Engine,延迟内置库的性能比睡眠更好,并且比任务队列更容易设置。

[https://cloud.google.com/appengine/articles/deferred][1]

The deferred built-in library would perform better than sleep for App Engine and is easier to setup than Task Queue.

[https://cloud.google.com/appengine/articles/deferred][1]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文