For instance, check a status every 30 seconds or poll a web service periodically ?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
- facebook “could not retrieve data from URL”
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Google appEngine: 404 when accessing /_ah/api [dup
-
Google App Engine Error:
INVALID_ARGUMENT
Yes, you can use the task queue. A task can be configured to run at custom intervals and can perform pretty much any action.
App Engine Cron Service allows you to configure regularly scheduled tasks that operate at defined times or regular intervals
A
cron.yaml
file in the root directory of your application (alongsideapp.yaml
) configures scheduled tasks for your Python application.For example:
The
url
field specifies a URL in your application that will be invoked by the Cron Service.