hootsuite-performance-tuning
Installation
SKILL.md
Hootsuite Performance Tuning
Instructions
Step 1: Cache Social Profiles
import { LRUCache } from 'lru-cache';
const profileCache = new LRUCache<string, any>({ max: 100, ttl: 3600000 });
async function getCachedProfiles(): Promise<any[]> {
const cached = profileCache.get('profiles');
if (cached) return cached;