CQRS / Command and Query Responsibility Segregation / コマンドクエリ責務分離原則

🔝TOP > 用語一覧

index

🤔 この用語について

Commands: Change the state of a system but do not return a value.

Queries: Return a result and do not change the observable state of the system (are free of side effects).

(引用)

https://martinfowler.com/bliki/CommandQuerySeparation.html

コマンド:状態を変更して値を返さない

クエリ:結果を返すが、状態を変化させない

📁 関連づいたドキュメント

🔝TOP > 用語一覧