I've configured apache to fetch filename.htm if user requests
filename.htm. But if filename.htm does not exist, apache will call
index.php.
Now, index.php will generate a page, buffer it using ob_start and then
save it as filename.htm (thus, effectively filename.htm is cached as
static
file on server hard disk)
Every 10 minutes a cron job deletes filename.htm
So all users requesting filename.htm would be served with the static
version if it exists, otherwise a latest dynamic version created by
index.php.
Any comments about using this type of caching technique..? Any
concurrent read/write problems that anyone foresees?
Mike
filename.htm. But if filename.htm does not exist, apache will call
index.php.
Now, index.php will generate a page, buffer it using ob_start and then
save it as filename.htm (thus, effectively filename.htm is cached as
static
file on server hard disk)
Every 10 minutes a cron job deletes filename.htm
So all users requesting filename.htm would be served with the static
version if it exists, otherwise a latest dynamic version created by
index.php.
Any comments about using this type of caching technique..? Any
concurrent read/write problems that anyone foresees?
Mike
Comment