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;
Installs
1
GitHub Stars
2.8K
First Seen
13 days ago
hootsuite-performance-tuning — jeremylongshore/tons-of-skills-marketplace