构建驱动器v2 API时,Google API客户端非常慢

时间:2013-05-25 04:54:48

标签: google-drive-api

驱动API服务的构建需要很长时间(10秒以上)。我尝试腌制服务并重新加载它,但没有快乐。有人知道如何让这个东西在本地缓存吗?

debug("Building Google Drive service")
from apiclient.discovery import build
self._service = build('drive', 'v2', http = http)

debug("Initialisation complete")

1 个答案:

答案 0 :(得分:4)

您可以在http级别打开缓存:

http = httplib2.Http(cache=".cache")

请参阅:https://developers.google.com/appengine/articles/efficient_use_of_discovery_based_apis