level51/silverstripe-data-documents
最新稳定版本:0.2.0
Composer 安装命令:
composer require level51/silverstripe-data-documents
包简介
A CQRS-style approach for managing data redundancy "the good way"
关键字:
README 文档
README
Low-effort approach for syncing your DataObject with document-based payload stores such Firestore, Pocketbase, Elasticsearch, Redis, ...
Inspired by the CQRS pattern, you can think of this module as a headless approach without any public API exposed by your Silverstripe app.
Installation
Make sure to require the base module...
composer require level51/silverstripe-data-documents
...and the payload store adapter of your choice.
- Firestore:
composer require level51/silverstripe-data-documents-firestore - Pocketbase:
composer require level51/silverstripe-data-documents-pocketbase - (adapter library in the making)
It is faily easy to create your own adapter. Just create a class and make it
implement the DataDocumentStore interface.
Recipe
- Install or create a document store adapter
- Make your DataObject implement the
DataDocumentinterface - Start manipulating your DataObject and check your document store
What is CQRS?
CQRS is an architectural pattern that separates the concerns of reading (query) and writing (command) operations in your application. This separation provides several benefits, including improved performance, code organization, and maintainability.
统计信息
- 总下载量: 51
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2023-09-14