Hey everyone, I’m working on a small product catalog and trying to decide if I should keep product info copied into carts and orders, or always read the latest product record when I need it.
I like denormalizing because reads stay simple and old orders keep their original price and name, but then I have to deal with stale data and awkward backfills when something changes. When do you decide the extra sync work is actually worth it?
BobaMilk