setCacheSize static method

void setCacheSize(
  1. int size
)

Set cache size (useful for memory management in constrained environments)

Implementation

static void setCacheSize(int size) {
  // Note: This would require recreating the cache in a real implementation
  // For simplicity, we're keeping the static cache
}