标签: php zend-framework gdata google-sheets
使用以下方法从600记录数据集逐个插入行大约需要一个小时:
foreach($people as $person){ $insert['name'] = $associate -> name; $insertedListEntry = $spreadsheetService->insertRow($insert, $spreadsheetKey, $worksheetId); }
是否可以一次插入多行?
答案 0 :(得分:3)
没有。见the official Google response on this.
他们建议您并行处理请求以加快插入过程。