Supposing I have two cron jobs in my app which run at the same time:
- description: purge old articles
url: /purge
schedule: every 12 hours
- description: parse comp apps
url: /comp
schedule: every 12 hours
Do they run simultaneously within the GAE runtime? Or are they done sequentially -- if so, then in what order? If they do run sequentially, would I have to use task queues in order to simulate simultaneous tasks (since, as far as I am aware, multithreading is not possible in app engine)?