From 50a9e0c21f2361bf10bfe96e46b5c46edee33448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Jim=C3=A9nez=20Moreno?= Date: Tue, 23 Jan 2018 16:49:49 +0100 Subject: [PATCH] Add link to CQRS resources. (#534) r=rnewman Not everyone knows what CQRS is (I had to Google it) :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78a0e048..4e2592e8 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ One might say that Mentat's question is: "What if an SQLite database could store (Note that [domain-level schemas are very valuable](http://martinfowler.com/articles/schemaless/).) -Another possible question would be: "What if we could bake some of the concepts of CQRS and event sourcing into a persistent relational store, such that the transaction log itself were of value to queries?" +Another possible question would be: "What if we could bake some of the concepts of [CQRS and event sourcing](http://www.baeldung.com/cqrs-event-sourced-architecture-resources) into a persistent relational store, such that the transaction log itself were of value to queries?" Some thought has been given to how databases as values — long-term references to a snapshot of the store at an instant in time — could work in this model. It's not impossible; it simply has different performance characteristics.