CPT, WP/CP | Type: PHPEliminate Caching on Specific Page Templates and Post Types

Put in your theme’s header.php file:

<?php
  if (is_page_template('page_eventslist.php')) {
    //conditional, if desired
    header('Cache-Control: no-cache, no-store, must-revalidate');
    header('Pragma: no-cache');
    header('Expires: 0');
}
?>