Cache millions of records
If you need to cache a large amount of data for subsequent retrieval in a recipe, how would you do it? Would you put it in a lookup table (limit 100K rows) or in a list of hashes? Is there a limit on the number of rows in a list? I am wondering h...