|
|
|
|
|
by t0mas88
4646 days ago
|
|
Take a look at Event Sourcing, commonly used with CQRS. The approach is indeed to store data as change-events in an event-store (which could by a SQL database or NoSQL store, that depends on your needs) and then built one or more views (separate databases, Lucene indexes, files, anything really) to service the type of requests that the application handles. For an example of CQRS with Event Sourcing in Java: http://axonframework.org |
|