```const key = { one: 'info for one', two: 12345, ...
# suitescript
c
Copy code
const key = { one: 'info for one', two: 12345, three: 'other stuff' };
const keyForCacheGet = JSON.stringify(key);
Then, inside the
cacheLoaderFunction
call I can
JSON.parse(context.key)
and have all the variables I need.