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