Google Drive API - 太慢了。

时间:2013-10-03 12:33:17

标签: google-app-engine google-api google-drive-api google-api-java-client google-drive-realtime-api

我刚刚使用Google Drive API。我有一个问题,它太慢了。我使用文档中的方法。例如:

List<File> getFilesByParrentId(String Id, Drive service) throws IOException {

    Children.List request = service.children().list(Id);
    ChildList children = request.execute();

    List<ChildReference> childList = children.getItems();
    File file;

    List<File> files = new ArrayList<File>();
    for (ChildReference child : childList) {
        file = getFilebyId(child.getId(), service);

        if (file == null) {
            continue;
        } else if (file.getMimeType().equals(FOLDER_IDENTIFIER)) {
            System.out.println(file.getTitle() + " AND "
                    + file.getMimeType());
            files.add(file);
        }
    }

    return files;
}

private File getFilebyId(String fileId, Drive service) throws IOException {
    File file = service.files().get(fileId).execute();
    if (file.getExplicitlyTrashed() == null) {
        return file;
    }
    return null;
}

问题:该方法有效,但速度太慢,持续约30秒。

如何优化此功能?例如,不要获取所有文件(仅文件夹或仅文件)。或类似的东西。

2 个答案:

答案 0 :(得分:5)

您可以使用q参数以及类似的内容:

service.files().list().setQ(mimeType != 'application/vnd.google-apps.folder and 'Id' in parents and trashed=false").execute();

这将获取所有不是文件夹,不是已删除文件且其父文件具有id Id的文件。一站式请求。

顺便说一句,API并不慢。你的算法提出了太多的请求,是。

答案 1 :(得分:-1)

public   void getAllFiles(String id, Drive service) throws IOException{

    String query="'"+id + "'"+ " in parents and trashed=false and mimeType!='application/vnd.google-apps.folder'";
    FileList files = service.files().list().setQ(query).execute();

    List<File> result = new ArrayList<File>();
    Files.List request = service.files().list();

    do {
        result.addAll(files.getItems());
        request.setPageToken(files.getNextPageToken());
    } while (request.getPageToken() != null && request.getPageToken().length() > 0);

}