function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Alex Nussey 3Alex Nussey 3 

Key Value storage in Lightning Component

I am trying to do some incredibly simple Key Value storage in a lightning component. Lighting offers a ton of "caching" features, but I cannot find any sort of secure, persistent storage method. If anyone can recommend anything, I would really appreciate it.

I have already looked at:
Platform Cache
--No guarantee to persist, cost money to use, and is not encrypted
Storable actions
--Allows you to store the results of various expensive actions. Sort of like guaranteed persistent cache, only works in certain situations
Storage Service
--Smart Store
------Mobile only
--IndexedDB
------Not secure
--Memory Adapter
------Not persistant

And none of them do what I need