Folks, my multi-script SuiteApp has the need to te...
# suitescript
u
Folks, my multi-script SuiteApp has the need to temporarily store a password-like bit of data in memory for easy access. Also, it should be available to all its scripts - and obviously to nothing else, for security reasons (other scripts, users, etc). Is using
N/cache
with scope
PROTECTED
a good (= 100% secure) idea? From the documentation it sounds like my use case:
Copy code
PROTECTED
The cache is available only to some scripts:
- If the script is part of a bundle, the cache is available to all scripts in the same bundle.
- If the script is not in a bundle, the cache is available to all scripts not in any bundle.