Hacker News new | ask | show | jobs
by commandlinefan 1098 days ago
> to mutate the status of individual posts and comment

AKA why you should normalize your data models.

1 comments

Meh it's a tradeoff usually. De-normalize for better read performance at the expense of some complexity and worse update performance/semantics.
This is true, but FWIW (it probably wouldn't save you here, too much is changing too fast) something like a SQL materialized view can very often give you both the chocolate and the peanut butter.