驱动API服务的构建需要很长时间(10秒以上)。我尝试腌制服务并重新加载它,但没有快乐。有人知道如何让这个东西在本地缓存吗?
debug("Building Google Drive service")
from apiclient.discovery import build
self._service = build('drive', 'v2', http = http)
debug("Initialisation complete")
答案 0 :(得分:4)
您可以在http级别打开缓存:
http = httplib2.Http(cache=".cache")
请参阅:https://developers.google.com/appengine/articles/efficient_use_of_discovery_based_apis