by ameyv on 5/30/21, 5:18 PM with 2 comments
Where do you draw the line when to use SP's or ORM? Considering not everyone understands database in depth and can write performant queries or SP's.
I know its very simple view and probably tons patterns (like CQRS) and infrastructure/serverless/geo-replicated architecture might be use behind the scene.
Have you ever worked on such systems where both ORM and SP's are used and how do they keep logic not fragmented at multiple places at scale?
TLDR; How highly scalable apps manage DB interactions in code vs handwritten SQL?
by QueensGambit on 5/31/21, 11:51 PM
These days, it is graph DB (such as firebase) for user facing module. It syncs data into a warehouse (such as BigQuery) that we use for batch processing.
by Graffur on 5/31/21, 10:49 PM