cache Description: This function demonstrates the usage of the cache API. Example: -- Store and retrieve data from the cache cache.store('key', 'value') local value = cache.retrieve('key') print("Cached value:", value)