Cache list of items
static Future<void> cacheList<T>(String key, List<T> items, {Duration? ttl}) async { await cacheData(key, items, ttl: ttl); }