Reputation: 4651
I was reading about PHP Cache (APC, MemCache, etc), suddenly a question raised in my mind
The Caching in PHP is Done at which level?
Either it is done on Client side or Server side?
Either on Hard Disk Space or Ram Space?
Any additional details or information about it would be really helpful.
Thanks in advance.
Upvotes: 0
Views: 1400
Reputation: 4529
Basics of caching systems:
PHP has classes for most caching systems. Ie. http://php.net/manual/en/book.memcache.php which will let you talk to your memcache server.
Installing memcached is quite easy btw, since its mostly 1 executable + 1 config file.
Upvotes: 1
Reputation: 11830
PHP caching is done on server side. It will be on hard disk obviously.
Upvotes: 3