search
HomeBackend DevelopmentPHP TutorialDetailed explanation of PHP simple cache file class_PHP tutorial
Detailed explanation of PHP simple cache file class_PHP tutorialJul 13, 2016 pm 05:41 PM
phpdevelopScalabilitypowerfuldocumentofSimplekindcacheDetailed explanation

PHP has made great progress in recent years due to its power and scalability. Compared with traditional ASP websites, PHP has an absolute advantage in speed. If you want to transfer 60,000 pieces of data to mssql, PHP takes 40 seconds, and ASP is no less than 2 Minutes. However, as the website has more and more data, we are eager to call the data faster. We do not need to delete it from the database every time. We can get it from other places, such as a file or a certain memory address. This is PHP's caching technology is Cache technology.

  In-depth analysis
Generally speaking, the purpose of caching is to put data in one place to make access faster. There is no doubt that memory is the fastest, but, Can hundreds of M of data be stored in the internal memory? This is unrealistic. Of course, sometimes it is temporarily placed in the server cache. For example, if the ob_start() cache page is turned on, the page content will be cached in the memory before sending the file header. You know Wait for the page output to be automatically cleared or wait for the return of ob_get_contents, or be cleared by ob_end_clean display. This can be well utilized in the generation of static pages and can be well reflected in templates.

In addition, there is an object application in ASP that can save public parameters. This is also considered a cache, but in PHP, I have not seen developers produce such an object. Indeed, it is not necessary. ASP .NET's page caching technology uses viewstate, and cache is file association (not necessarily accurate). When the file is modified, the cache is updated. If the file is not modified and does not time out (note 1), the cache is read and the result is returned. , this is the idea, look at this source code:
if (!@IS_DIR ($ Cache_diRNAME)) {
if (!@mkdir ($ cache_dirname, 0777)) {
$ This- & gt; warn (cache file does not Exists and cannot be created, it needs to be created manually.);                                    
                                                                                                                                                                                                                                (){
echo Cache class bye.;
}
function get_url() {
if (!isset($_SERVER[REQUEST_URI])) {                                                                                                         _SERVER[REQUEST_URI];                                                                            $url .= (!emptyempty($_SERVER[QUERY_STRING])) ? . $_SERVER[QUERY_STRING] : ; 
                                                                                                     echo "An error occurred:".$errorstring.""; if( !$fso=fopen($pageurl,w)){                                                                                                                                                                                                                             
                                                                                                                                                                                                 return false; 🎜>} if (! FWRITE ($ FSO, $ PageData)) {// Write intewets, Serialize writes other formats
$ this- & gt; warns (unable to write cache files.);;;); //trigger_error
return false;
}
flock($fso,LOCK_UN);//Release lock
                                                                                                                                                  
function display_cache($cacheFile){
if(!file_exists($cacheFile)){
$this->warn(Cache file cannot be read.);//trigger_error
return false;
                }  
                echo 读取缓存文件:.$cacheFile;  
                //return unserialize(file_get_contents($cacheFile));  
                $fso = fopen($cacheFile, r);  
                $ data = fread($fso, filesize($cacheFile));
fclose($fso);
return $data;




http://www.bkjia.com/PHPjc/486128.html

www.bkjia.com

true

http: //www.bkjia.com/PHPjc/486128.html

TechArticlePHP has made great progress in recent years due to its power and scalability. Compared with traditional ASP, PHP The website has an absolute advantage in terms of speed. If you want to transfer 60,000 pieces of data from mssql to PHP, it will take 40 seconds, and ASP will not be faster...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor