What is the maximum size of the CacheService ?
I know the maximum time something can be stored in cache is 21600 seconds, but I can\'t find how large the sizes of th
As mentioned the CacheService size is undocumented. There is a 100KB maximum amount of data stored per key but multiple keys are possible. In an experiment 10MB worth of data was stored using multiple keys. This limit was hit due to execution timeout so more may be possible.
You may want to look at this community developed CacheHandler library if you are anticipating on using CacheService for a lot of temporary data storage.