southern writes:As a web developer, you must have heard the term "cache" in various situations. To help you fully understand what cache means, we wrote this article.
Read More...
Table Of Content
OpCode Cache
Application Cache
HTTP Cache
Proxy Cache
End
OpCode Cache
When running a PHP script. The interpreter will parse the script into a series of operation codes, commonly known as "opcodes".
By caching the opcode in memory, we can gain significant performance improvement. This is known as opCode cache.
There is a list of well-know opCode cache engines and they are:
Zend OpCache
APC User Cache
Alternative PHP Cache
Xcache
By default, PHP ships with Zend OpCache.
Application Cache
When building an application, we can utilize some cache strategies to avoid slow response:
Store data that is not changed often in a cache.
Store time-consuming computed data in a cache.
Above are known as application cache.
Types of caching in a PHP web application
|
PHP Login Registration with Email Verification using OTP
|
4images Gallery Installation-Tutorial
|
6 Different Ways to Debug a Phpnuke Problem Quickly
|
Character Entity References in HTML 4 and XHTML 1.0
|
RavenNuke(tm) Installation Tutorial
|

![cssheader=[tonheaderclass] cssbody=[tonbodyclass] header=[More about]body=[] More about](modules/News/css/images/transparent.gif)
