Classic event sourcing has a rule: one aggregate, one stream, one consistency boundary. It is simple and it scales, but it is rigid. The moment you need an invariant that spans two aggregates, you are writing sagas and workarounds. Dynamic Consistency Boundaries (DCB) are meant to remove that constraint. The recurring objection is that they […]
Tag Archives: database
MySQL database importeren via command line
De meeste mensen gebruiken phpMyAdmin of Adminer om hun databases te importeren op een server. Voor grote bestanden kan het echter vaak handig zijn om dit via command line te doen: mysql -u USERNAME -p -h HOST DATABASENAME < data.sql