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
Posted on Tuesday, October 06, 2020 @ 20:07:50 CDT in Tutorials
|
PHP Login Registration with Email Verification using OTP
Posted on Tuesday, October 06, 2020 @ 20:07:39 CDT in Tutorials southern writes:
|
4images Gallery Installation-Tutorial
Posted on Friday, December 25, 2009 @ 12:47:39 CST in Tutorials Coldy writes:
|
6 Different Ways to Debug a Phpnuke Problem Quickly
Posted on Monday, October 12, 2009 @ 10:18:36 CDT in Tutorials floppydrivez writes:
|
Character Entity References in HTML 4 and XHTML 1.0
Posted on Friday, July 31, 2009 @ 10:38:50 CDT in Tutorials
|
RavenNuke(tm) Installation Tutorial
Posted on Wednesday, April 29, 2009 @ 04:14:02 CDT in Tutorials MrSideJob writes:
|