Live data from Hacker News

Software Architecture Patterns: 5 minute read

orkhanscience.medium.com

71–73 of 73 posts

Re: Software Architecture Patterns: 5 minute read

#72
post #33

who is doing Space-based architecture?

Interesting architecture and I really would like to understand better the virtualized part: how does that scale?

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

#73
post #68
post #66

Earlier 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 )

If all you're doing is pumping SQL into json, you should either be generating code, or if you don't care about performance using a dynamic language with meta-programming techniques such that you write almost 0 code to achieve your results.
Post reply on HN