Hacker News new | ask | show | jobs
by tshaddox 1877 days ago
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.
2 comments

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?