Hacker News new | ask | show | jobs
by solipsism 1878 days ago
It's called a materialized view.
1 comments

That’s one implementation of a similar idea in RDBMSs, although they generally require manually refreshing them when desired. I think I’ve heard that some RDBMSs also allow you to apply normal inserts and updates to materialized views if you want to manually keep them up to date as well, although I’ve never tried that approach.
It’s called incremental view maintenance.

Check out: https://wiki.postgresql.org/wiki/Incremental_View_Maintenanc...

Manually refreshing them? How could such a process possibly be manual but not automatable? Does it involve turning a crank?