One of the few speakers in software development who actually knows what he is talking about.
@edgeeffect8 ай бұрын
I don't know... the sound quality on this video is so bad, I haven't got a clue what anyone is talking about. ;)
@appstratum9747 Жыл бұрын
Still an excellent talk to watch.
@Sonsequence5 жыл бұрын
Sharing a database is not only bad for mixed up writes. In practice it goes like this: first you copy across all your data model objects. Copy pasted code is pretty bad. Copy pasted code in a separate repo you totally forgot would need to be updated along with your DB schema changes? That's critical event level and I've seen it repeatedly in the wild. If two tables are too closely related to forego the option of a SQL join they should just be in the same service. Also, there are no limits to the ways people might want data connected in reports so use an external warehouse/ OLAP cube. Major app features are usually much slower to develop than reports so the coupling points tend to be more predictable.
@JonathanLevinTKY4 жыл бұрын
I actually studied corba when I was studying XML SoA.