Created
January 20, 2015 22:34
-
-
Save mkorostoff/d31c8352d43894b0645c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function cache_invalidation_node_presave($node) { | |
if(!empty($node->promote)) {//target front page content | |
//Clear drupal cache | |
cache_clear_all('http://cachedemo.local/', 'cache_page'); | |
//Clear varnish cache | |
httprl_request( 'http://cachedemo.local/', array('blocking' => FALSE, 'method' => 'PURGE')); | |
httprl_send_request(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment