So, I’m reading through the docs and I’ve got a bunch of questions.
Let’s say I use a global storage and save a number of items with the keys like this?
{uniqueID}:{something1}
{uniqueID}:{something2}
{uniqueID}:{something3}
Question 1: I assume there is no way to query all the values which would start with uniqueID, right? Any way to count the amount of key/value pairs stored?
Question 2: Let’s say user does not delete the values or there simply is no functionality for that and over time the storage will be full with unused and unneeded values stored. How are you cleaning up the storage?