gpt4 book ai didi

javascript - Google Apps 脚本 - 永久缓存

转载 作者:行者123 更新时间:2023-11-29 19:10:14 26 4
gpt4 key购买 nike

我有一张包含大量自定义函数调用的工作表。我想永久缓存结果。到目前为止,我一直使用缓存服务,但它被限制为六个小时。有没有办法永久缓存结果?我看了评论here ,可以在用户的​​浏览器中缓存数据。我应该如何实现这一目标?

谢谢!

编辑:感谢 Serge Hendrickx 的建议,我能够使用与缓存服务相同的方法永久缓存结果:

var scriptProperties = PropertiesService.getScriptProperties();

if(getCachedVariable(variableName) == null){
// Results aren't in cache, get them and save them
scriptProperties.setProperty(variableName,value);
}
return getCachedVariable(variableName);

function getCachedVariable(variableName){
return scriptProperties.getProperty(variableName);
}

最佳答案

这可能不是您要查找的内容,但为什么不将结果存储在属性服务中呢?此存储是永久性的。您可以检查结果是否已在存储中,并可能将“缓存”的年龄存储在其中。

https://developers.google.com/apps-script/reference/properties/properties-service

关于javascript - Google Apps 脚本 - 永久缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39529245/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com