Thomas Gries wrote:
Inside an extension module: what is the correct way to _disable caching for that specific page_ (example: dynamic integration of texts from another source, which might change) ?
Rob Church wrote:
$wgOut->setSquidMaxage( 0 );
Yes, you could do that, or you could use $parser->disableCache() if you actually wanted it to work. $parser is a Parser object that should be passed as a parameter to Parser-related hooks.
-- Tim Starling