Caching Strategy
Zuraffa supports cache-aware generation through zfa make.
For v5 docs, the canonical pattern is:
zfa entity createzfa make ... --cachezfa build
Basic usage
1. Generate with caching
zfa make Product --preset=crud --methods=get,getList --cache
2. Configure storage
zfa make Product --preset=crud --methods=get,getList --cache --cache-storage=sqlite
What --cache adds
When caching is enabled, the normalized plan adds cache-related generation on top of the CRUD/domain/data stack.
Typical result:
- remote datasource
- local datasource
- cache policy wiring
- cached repository orchestration