Home > Software design >  What is the total time frame on Google Apps Script DocumentProperties?
What is the total time frame on Google Apps Script DocumentProperties?

Time:12-18

I am curious, I created a function that stores and reads data in a GAS property of DocumentPropertie. What is the total when using that property? is it an hour? 24 hours? One week?

CodePudding user response:

Each key/value pair remains there until you change it.

There is also a Cache Service and that has a time threshold associated with it.

  • Related