Home Backend Development PHP Tutorial Database caching principle in PHP_PHP tutorial

Database caching principle in PHP_PHP tutorial

Jul 13, 2016 pm 05:07 PM
cache php write host author principle database article cache

The author of this article mainly uses the database cache in php, php cache, cache_write, and var_export functions to cache data, and I think the writing is very good.

Database caching principle in PHP

The author of this article mainly uses the database cache in php, php cache, cache_write, and var_export functions to cache data, and I think the writing is very good.


If the background application receives a query request from the browser and connects to the database to read data every time, it will inevitably increase the burden on the database. There are often a large number of repeated requests. We can use caching technology to save these repeated information and reuse them. In this way, in some cases, the performance of the program can be greatly improved.
1. Cache function
The cache_write function accepts the $string parameter and writes it to the $file file. Pay attention to the var_export function, its function is:
This function returns structural information about the variables passed to the function. It is similar to var_dump(), except that the representation returned is legal PHP code. You can return a representation of a variable by setting the function's second argument to TRUE.
These parameters can be arrays or constants, and these arrays or constants are usually records taken from the database, or data obtained after unserializing the object. These can be cached in local text files.
The cache_write function is very simple. When you need to read data, first determine whether the cache exists. If it exists, it will not connect to the database to get the data. Instead, it will directly read the cached text file and directly generate data of arrays or constants. You can directly use.
[php]
//File name func.inc.php
define("CACHEDIR", "./"); //Define cache folder
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. Examples of write caching and reading
[php]
​​ ​​​​ //Write cache
  include "func.inc.php";

​​ $arr = array (1, 2, array ("a", "b", "c"));
​ cache_write('test.cache.php', $arr); //Cache file test.cache.php
?>
[/php]
[php]
​​ //Read cache
  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. Performance analysis
The reason why caching can improve performance is to exchange local disk space for network access speed and database server access time.
a = local read and write time
b = space occupied by this machine
c = network transmission time
d = database server disk time
It can be estimated that if the database and application exist on one machine, the main comparison between a and d will not be obvious, or even worse. Because the database system has been carefully optimized for disk access, it is incomparable to the operating system's ordinary reading and writing of files.
If the disk access efficiency of the local machine is not good, sometimes retrieving data from the database on the LAN may be faster than retrieving data from the cache of the local machine. This situation is relatively rare. As the number of requests increases significantly, the effect of caching will become obvious.
I think it’s very good, so I recommend it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630479.htmlTechArticleThe author of this article mainly uses the database cache, php cache, cache_write, and var_export functions in php to cache data. After using it, I think the writing is very good. Database caching in PHP...
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.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles