Hybrid storage for Google Apps Script (CacheService + PropertiesService). Combines cache speed and properties reliability.
Optionaloptions: { cache?: Cache; prefix?: string; properties?: Properties; ttl?: number }Configuration options
Optionalcache?: CacheWhich cache service to use (ScriptCache by default)
Optionalprefix?: stringPrefix for keys
Optionalproperties?: PropertiesWhich properties service to use (ScriptProperties by default)
Optionalttl?: numberTime to live in seconds (21600 - 6 hours by default)
Hybrid storage for Google Apps Script (CacheService + PropertiesService). Combines cache speed and properties reliability.