create-object-pool
Installation
SKILL.md
Object Pool Pattern Generator
Creates Object Pool pattern infrastructure for managing reusable expensive objects.
When to Use
| Scenario | Example |
|---|---|
| Expensive creation | Database connections |
| Limited resources | HTTP client handles |
| Connection reuse | Socket connections |
| Memory management | Large object caching |
Component Characteristics
PoolInterface
- Acquire/release semantics
- Pool lifecycle management
- Capacity configuration