the window during which backends have no statistics file to read.
<filename>pg_stat_tmp</filename>. Pointing this at a RAM based filesystem
will decrease physical I/O requirements and can lead to increased
performance. If this parameter is changed when the system is running,
- the statistics functions might return no information until a new
- file has been written, which typically happens twice per second.
+ there is a small window of time until the new file has been written
+ during which the statistics functions might return no information.
</para>
</listitem>
</varlistentry>
/*
* Reload configuration if we got SIGHUP from the postmaster.
+ * Also, signal a new write of the file, so we drop a new file as
+ * soon as possible of the directory for it changes.
*/
if (got_SIGHUP)
{
ProcessConfigFile(PGC_SIGHUP);
got_SIGHUP = false;
+ need_statwrite = true;
}
/*