English 中文(简体)
How to implement a prototype caching system in PHP?
原标题:

The problem is how to do it efficiently when checking whether the cache has expired?

Can you explain with some really basic demo?

问题回答

There are so many different ways to cache data. You can store them in ram, on disc, etc. I ve wrote my own custom solution that uses memcache/apc/filesystem depending on what I need for the task because I couldn t find one that met my requirements. You can see some examples of caching with PEAR_CacheLite & Zend_Cache. Like hobodave mentioned, apc does have a very simple way of just putting data into the cache with a ttl, but that might not be practical depending on your application. Each of these have some issues, so buyer beware.

Code Sample: checking whether the cache has expired

DEFINE( time_to_live ,60);

 class MyCacheManager {

    function load(key) {
       if(filemtime(/data/cache/key.dat) > time_to_live) {
         //expired!
       }

    }

 }//CLASS

It depends on the case.

The best way is to generate static data, and serve it directly, e.g. via redirect in .htaccess, so the php has nothing to do. Cache expires when your data has changed, e.g. when you add new post (then you generate new static file overwriting old one).

You may want implement two level cache pattern if you need to refresh cache in a specific period of time.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签