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