What is the fastest way to update a google spreadsheet with a lot of data through the spreadsheet api?

前端 未结 3 1849
我寻月下人不归
我寻月下人不归 2020-12-03 13:19

I am using the Google Spreadsheet API to update a spreadsheet with a lot of data (hundreds of rows and around twenty columns).

I have tested making a batch call to u

3条回答
  •  伪装坚强ぢ
    2020-12-03 13:22

    If you are updating entire lines, you can try working with list-based feeds:

    http://code.google.com/intl/fr-FR/apis/spreadsheets/data/3.0/developers_guide.html#UpdatingListRows

    It will allow you to update values (not formulas).

    If you still have performance problems, you should switch to something like a relational database server or google's datastore (if you are working with google app engine)

提交回复
热议问题