我每天都有一项 cron 工作来调用 API 并获取一些数据。对于每一行数据,我启动一个任务队列来处理数据(这涉及通过进一步的 API 查找数据)。一旦所有这些都完成了,我的数据在接下来的 24 小时内都不会改变,所以我将其存储在内存中。
有没有办法知道我排队的所有任务何时完成,以便我可以缓存数据?
目前,我只是安排两个这样的 cron 作业,以一种非常混乱的方式来做这件事:
class fetchdata(webapp.RequestHandler):
def get(self):
todaykey = str(date.today())
memcache.delete(todaykey)
topsyurl = 'http://otter.topsy.com/search.json?q=site:open.spotify.com/album&window=d&perpage=20'
f = urllib.urlopen(topsyurl)
response = f.read()
f.close()
d = simplejson.loads(response)
albums = d['response']['list']
for album in albums:
taskqueue.add(url='/spotifyapi/', params={'url':album['url'], 'score':album['score']})
class flushcache(webapp.RequestHandler):
def get(self):
todaykey = str(date.today())
memcache.delete(todaykey)
然后我的 cron.yaml 看起来像这样:
- description: gettopsy
url: /fetchdata/
schedule: every day 01:00
timezone: Europe/London
- description: flushcache
url: /flushcache/
schedule: every day 01:05
timezone: Europe/London
基本上 - 我猜测我所有的任务运行时间不会超过 5 分钟,所以我只需在 5 分钟后刷新缓存,这样可以确保在缓存数据时它是完整的。
有没有更好的编码方法?感觉我的解决方案不是最好的....
谢谢汤姆