Skip to content

Some more questions #215

Answered by hnaderi
cloudcompute asked this question in Q&A
Aug 25, 2023 · 4 comments · 2 replies
Discussion options

You must be logged in to vote

A. The tables are created when the back-end is setting up.
The table structure differs for event-sourcing style and the CQRS one. In event-sourcing, the journal table contains all the events, each row is a unique event.
In CQRS style, you can either have a single table with jsonified states per row, or you can implement your own repository, which can be a normalized database schema. See this discussion for more info.

B. Outbox table in edomata is very similar to the example diagram in your reply.

C. These are logics implemented in the application layer when handling a command, there are no limitations in implementing logic when you use edomata.
Given that the command contains the informat…

Replies: 4 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@hnaderi
Comment options

Answer selected by cloudcompute
Comment options

You must be logged in to vote
1 reply
@hnaderi
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants