Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // try retrieving $data from cache
- $data = $cache->get($key);
- if ($data === false) {
- // $data is not found in cache, calculate it from scratch
- // store $data in cache so that it can be retrieved next time
- $cache->set($key, $data);
- }
- // $data is available here
Advertisement
Add Comment
Please, Sign In to add comment