What problem does it solve?
This Skill codifies and standardizes store-layer patterns for Go applications, including a defined Driver interface, a cache-enabled wrapper, and a migration-and-model architecture to accelerate robust data access layers.
Core Features & Use Cases
- Driver & Store Abstraction: Clear separation between data access and business logic with a pluggable storage backend.
- Caching Layer: In-memory caches for frequently accessed entities to reduce DB load.
- Migration & Models: Built-in migration flow and model definitions to keep schemas in sync across environments.
- Use Case: A Go service needs a consistent data layer to support user and memo models with minimal boilerplate.
Quick Start
Set up the proto definitions, implement the driver, initialize the DB, and seed demo data in a test environment.