The content of this article is about how to use the cache dependency feature (code example) of yii2. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Caching is one of the powerful features of Yii2. Proper use of caching technology can effectively reduce the access pressure on the server. The most basic cache of Yii2 includes Data Cache, Fragment Cache, Page Cache and HTTP Cache. This part of the content is in the official documentation. For a more detailed description, I won’t go into details here. If necessary, you can refer to the caching section in the Yii2 official development documentation.
Page Cache
Data cache and fragment cache are caches for a certain part of the website. This cache needs to be explicitly declared in the code part and modified. kind of hard. The relative page cache is for the method under the controller, and the view file of this method is cached at the page level. Since the page cache can be injected into the controller in the form of behavior, you only need to modify the corresponding configuration items in the controller when making changes, so using the page cache is simpler and more scalable.
Cache dependency
Generally speaking, caching can enhance the performance of the server, but will weaken its interactivity to a certain extent. Therefore, it is necessary to regularly check the cache, clean up expired data, and fill in the latest data to ensure that the content is timely and accurate. At this point, Yii2's cache dependency can effectively solve this problem. Yii2 has five built-in caching classes, as follows:
yii\caching\ChainedDependency: If any dependency in the dependency chain changes, the dependency changes.
yii\caching\DbDependency: If the query result of the specified SQL statement changes, the dependency changes.
yii\caching\ExpressionDependency: If the execution result of the specified PHP expression changes, the dependency changes.
yii\caching\FileDependency: If the last modification time of the file changes, the dependency changes.
yii\caching\TagDependency: Associate cached data items with one or more tags. You can check whether a cached data item for a specified tag is valid by calling yii\caching\TagDependency::invalidate().
Take the database dependency DbDependency
as an example. In the controller IndexController, declare the dependency:
<?php namespace frontend\controllers; use yii\web\Controller; class IndexController extends Controller { public function behaviors() { return [ [ 'class' => 'yii\filters\PageCache', 'only' => ['index'], 'duration' => 60, 'variations' => [ \Yii::$app->language, ], 'dependency' => [ 'class' => 'yii\caching\DbDependency', 'sql' => 'SELECT COUNT(*) FROM post', ], ], ]; } public function actionIndex() { return $this->render('index'); } }
As shown in the code, in the behavior method behaviors()
declares the driver class of the page configuration, only
corresponds to an array, and the array elements are the views corresponding to the methods that need to be cached. duration represents the expiration time in seconds. variations corresponds to an array, and the system will monitor whether the content in this array has changed. If it changes, the cache will be refreshed, and vice versa. dependency corresponds to a dependency relationship, where class represents the class that the cache depends on, and sql represents a query statement. The meaning is that when the total number of records in the post data table changes, it can be considered that a certain piece of data is added or deleted and the cache needs to be refreshed.
Chain dependency
The above example is very simple, but actual development is often more complicated. Sometimes whether a page needs to be refreshed is determined by many factors, which cannot be described clearly by just one relationship. For example, if there is neither deletion nor addition in the post data table, but an update of data, then the above query statement cannot process the class. At this time, you can use SELECT MAX(*) FROM post
to detect updates, but these two queries cannot be written directly into the built-in page cache class. At this time, you can use the built-in class of chain dependency to solve this problem. .
The so-called chain dependency is to configure the cache dependency relationship into a chain. Once a relationship in the chain is not established, the cache will be refreshed.
Where yii\caching\ChainedDependency
is the main implementation class of cache dependency. The implementation code is as follows:
<?php namespace frontend\controllers; use yii\web\Controller; class IndexController extends Controller { public function behaviors() { return [ 'pageCache' => [ 'class' => 'yii\filters\PageCache', 'only' => ['index'], 'duration' => 24 * 3600 * 365, // 1 year 'variations' => [ \Yii::$app->language, \Yii::$app->id ], 'dependency' => [ 'class' => 'yii\caching\ChainedDependency', 'dependencies' => [ new \yii\caching\DbDependency(['sql' => 'SELECT MAX(updated_at) FROM post']), new \yii\caching\DbDependency(['sql' => 'SELECT COUNT(id) FROM post']), new \yii\caching\DbDependency(['sql' => 'SELECT MAX(updated_at) FROM category']), new \yii\caching\DbDependency(['sql' => 'SELECT COUNT(id) FROM category']), new \yii\caching\ExpressionDependency(['expression'=>'\Yii::$app->request->get("id")']); new \yii\caching\FileDependency(['fileName'=>'yanying.txt']); ] ], ], ]; } public function actionIndex() { return $this->render('index'); } }
As shown above, configure the built-in chain dependency of class Yii2 in dependency, and define the "chain" of class cache dependencies in dependencies. When a certain relationship on the chain does not hold, the cache will be refreshed. In addition, if a small part of the entire cached page does not need to be cached, it can be set as dynamic content. You can check the official documentation for this part, but it is more recommended to look at the source code. The documentation is relatively simple.
Summary
Yii2 does not provide a built-in function for static HTML pages, but provides a caching mechanism. When developing a website, you can optimize the content page through pseudostatic caching, and use built-in cache dependencies and chain dependencies to solve the problem of content expiration, and deal with the parts that do not need to be cached through the setting of dynamic content. For example, after logging in, the user name can be displayed on the homepage, and dynamic content can be used in this part.
The above is the detailed content of How to use the cache dependency feature of yii2 (code example). For more information, please follow other related articles on the PHP Chinese website!

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6
Visual web development tools