noCache static method

void noCache()

Set no-cache headers

Implementation

static void noCache() {
  response.header('Cache-Control', 'no-cache, no-store, must-revalidate');
  response.header('Pragma', 'no-cache');
  response.header('Expires', '0');
}