effect-patterns-streams-sinks
Installation
SKILL.md
Effect-TS Patterns: Streams Sinks
This skill provides 6 curated Effect-TS patterns for streams sinks. Use this skill when working on tasks related to:
- streams sinks
- Best practices in Effect-TS applications
- Real-world patterns and solutions
🟡 Intermediate Patterns
Sink Pattern 1: Batch Insert Stream Records into Database
Rule: Batch stream records before database operations to improve throughput and reduce transaction overhead.
Good Example:
This example demonstrates streaming user records from a paginated API and batching them for efficient database insertion.