database-sharding
Installation
SKILL.md
database-sharding
Comprehensive database sharding patterns for horizontal scaling with hash, range, and directory-based strategies.
Quick Start (10 Minutes)
Step 1: Choose sharding strategy from templates:
# Hash-based (even distribution)
cat templates/hash-router.ts
# Range-based (time-series data)
cat templates/range-router.ts
# Directory-based (multi-tenancy)
cat templates/directory-router.ts