DEV Community

Discussion on: Event Sourcing: What it is and why it's awesome

Collapse
 
guettli profile image
Thomas Güttler • Edited

Having the history is very nice. That is very true.

I use the traditional way: Python/Django/PostgreSQL.

Some tables (not all) have a history-trigger. This logs modification of this table to a history-table.

Thank you for exampling Event Sourcing.

I love enforced data structures and constraints.

Up to now I am not convinced yet.