BLOCK_NO_CACHE
Definition
Description
The block should not get cached. This setting should be used:
- for simple blocks (notably those that do not perform any db query),
- for blocks that change too frequently.
Code
<?php
define('BLOCK_NO_CACHE', -1);
?> 