Home php教程 php手册 PHP 中的数据库缓存原理

PHP 中的数据库缓存原理

Jun 13, 2016 am 10:09 AM
cache php write host author principle database article cache

本文章作者主要是用到 php 里面的数据库缓存,php缓存,cache_write,var_export功能对数据进行缓存操作了,觉得写得很不错。

PHP 中的数据库缓存原理

本文章作者主要是用到 php 里面的数据库缓存,php缓存,cache_write,var_export功能对数据进行缓存操作了,觉得写得很不错。


如果后台应用接收到浏览器端的查询请求后,每次都与数据库连接读取数据,势必增加数据库的负担。而往往有大量的请求是重复的,我们可以把这些重复的信息采用缓存技术保存下来,重复使用,这样,在某些情况下可以大大提高程序的性能。
  1,缓存函数
  cache_write函数接受$string参数,写到$file文件中。注意var_export函数,作用是:
  此函数返回关于传递给该函数的变量的结构信息,它和 var_dump() 类似,不同的是其返回的表示是合法的 PHP 代码。您可以通过将函数的第二个参数设置为 TRUE,从而返回变量的表示。
  这些参数可以是数组或常量,而这些数组或常量通常为从数据库中取出的记录,或非序列化(unserialize)对象后得到的数据。这些都可以缓存到本地的文本文件中。
  cache_write函数很简单,需要读取数据时,先判断缓存是否存在,存在的话就不去连接数据库取数据,而是直接读出缓存的文本文件,直接产生了数组或常量等类型的数据,可以直接使用。
[php]
    //文件名func.inc.php
  define("CACHEDIR", "./");  //定义缓存文件夹
  function cache_write($file, $string, $type = 'array')
  {
   if(is_array($string))
   {
    $type = strtolower($type);
    if($type == 'array')
    {
     $string = "";
    }
    elseif($type == 'constant')
    {
     $data='';
     foreach($string as $key => $value)
       $data .= "define('".strtoupper($key)."','".addslashes($value)."');n";
     $string = "";
    }
   }
   $strlen = file_put_contents(CACHEDIR.$file, $string);
   chmod(CACHEDIR.$file, 0777);
   return $strlen;
  }
  function cache_read($file)
  {
   $cachefile = CACHEDIR.$file;
   if(!file_exists($cachefile))
     return array();
   return include $cachefile;
  }
  function cache_delete($file)
  {
   return @unlink(CACHEDIR.$file);
  }
  if(!function_exists('file_put_contents'))
  {
   define('FILE_APPEND', 8);
   function file_put_contents($file, $string, $append = '')
   {
    $mode = $append == '' ? 'wb' : 'ab';
    $fp = @fopen($file, $mode) or exit("Can not open file $file !");
    flock($fp, LOCK_EX);
    $stringlen = @fwrite($fp, $string);
    flock($fp, LOCK_UN);
    @fclose($fp);
    return $stringlen;
   }
  }
  ?>
[/php]
  2,写缓存和读取的示例
[php]
             //写缓存
      include "func.inc.php";
    
      $arr = array (1, 2, array ("a", "b", "c"));
      cache_write('test.cache.php', $arr);  //缓存文件 test.cache.php
      ?>
[/php]
[php]
             //读缓存
      include "func.inc.php";
    
      $var = cache_read('test.cache.php');
      print_r($new_var);
    
      print_r($var);
    
      foreach ($var as $k=>$v)
      {
        echo '
' . $k . '=' . $v ;
      }
      ?>
[/php]
    3,性能分析
    缓存之所以能提高性能,是通过本地磁盘空间换网络存取速度和数据库服务器存取时间的结果。
    a = 本机读写时间
    b = 本机占用空间
    c = 网络传输时间
    d = 数据库服务器磁盘时间
    可以估算到,如果数据库与应用程序存在于一台机器时,主要是 a 与 d 的比较,效果可能并不明显,甚至还要糟一点。因为数据库系统针对磁盘存取经过了精心优化,是操作系统对文件的普通读写无法相比的。
    如果本机的磁盘存取效率不佳,有时从局域网的数据库上取得数据,可能比从本机的缓存取数据还快,这种情况比较少见。而随着请求数量的大量增加,缓存的效果就会明显起来。
觉得很不错,所以推荐一下。

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles