Why is React not in this list?
Because a javascript library is not software architecture
Software Architecture Patterns: 5 minute read
71–73 of 73 posts
Re: Software Architecture Patterns: 5 minute read
#72who is doing Space-based architecture?
If processing units store all data in memory, it doesn’t scale linearly. Maybe sharing is assumed?
I’d like to see some better examples of this if anyone has any!
Re: Software Architecture Patterns: 5 minute read
#73Earlier quoted context omitted.
Honestly - a layered approach ends up paying dividends even if used solely for code organization. Options like microservices and event frameworks work quite well when using layered approaches internally. Basically, I've seen SQL in controllers and I don't ever want that again.
depends, some systems are such that all they are doing is pumping SQL results into JSON, in that case, I don't want to see some general purpose programming language in the controller. Which is kind of the idea behind https://postgrest.org/ ( written in haskell if anyones interested )