samol
samol

Reputation: 20590

Postgres: How to auto refresh materialized views per interval

Is it possible to automatically refresh a materialized view every 15 minutes or does it have to happen in the client code?

Upvotes: 0

Views: 619

Answers (1)

Cody Caughlan
Cody Caughlan

Reputation: 32748

It will have to be done in an external process. As of Postgres 9.3 doesn't offer a way to have the system refresh materialized views itself on a scheduled basis.

Upvotes: 1

Related Questions