1. Introduction and installation
memcached is a high-performance distributed memory object caching system, which is usually used to reduce database loading pressure to improve the response speed of dynamic web applications.
This extension uses the API provided by the libmemcached library to interact with the memcached server. It also provides a session handler (memcached).
For the installation of memcached, please refer to this article: Installation and configuration of memcached in Ubuntu.
Before installing the PHP extension memcached, you need to install libmemcached. libmemcached is the C/C++ local client library of memcached.
Before installing libmemcached, you must first install libcloog-ppl0, otherwise an error will occur during the compilation and installation process:
sudo apt-get install libcloog-ppl0
Then download the required libmemcached source code installation package from here http://libmemcached.org/libMemcached.html, and unzip it to Specify the directory, enter the directory, and then execute the following command:
./configure --prefix=/usr/local/libmemcached make sudo make install
Then you can install the memcached extension of php. Download the required source code installation package from here: http://pecl.php.net/package/memcached , decompress to the specified directory, enter the directory, and then execute the following instructions:
phpize ./configure --with-php-config=/usr/local/php/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached make sudo make install
An error may be reported during the installation process:
未知类型名称:memcached_server_instance_st
causing make to fail. The solution is as follows:
Find this file in the memcached extension decompression directory: php_libmemcached_compat.h, then add the following line in it
typedef const struct memcached_server_st *memcached_server_instance_st;
make again, and it will be OK.
After the installation is successful, add extension=memcacached in php.ini, then restart apache, check phpinfo, and see the following section
to prove that the installation is successful.
2. Timeout
Some storage commands will contain an expiration value (related to an element or a client operation request) when sent to the server. For all such uses, the actual value sent can be a Unix timestamp (an integer number of seconds since January 1, 1970 until the expiration time), or a number in seconds from now. In the latter case, this number of seconds cannot exceed 60 × 60 × 24 × 30 (seconds in 30 days); if the invalid value is greater than this value, the server will treat it as a real Unix timestamp. Not an offset from the current time.
If the expiration value is set to 0 (default), this element will never expire (but it may be deleted by the server to allocate space for other new elements).
3. Callbacks
1. Result callbacks
Result callbacks method is called once for each element in the result set after obtaining the element through the Memcached::getDelayed() or Memcached::getDelayedBykey() method. The callback function can receive a Memcached object and element information described by an array. This callback function does not need to return any information.
Example #1 Result callback example
<?php $m = new Memcached(); $m->addServer('localhost', 11211); $items = array( 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' ); $m->setMulti($items); $m->getDelayed(array('key1', 'key3'), true, 'result_cb'); function result_cb($memc, $item) { var_dump($item); } ?>
The output of the above routine is similar to:
array(3) { ["key"]=> string(4) "key1" ["value"]=> string(6) "value1" ["cas"]=> float(49) } array(3) { ["key"]=> string(4) "key3" ["value"]=> string(6) "value3" ["cas"]=> float(50) }
2. Read through cache callback
The read through cache callback is called when an element is not retrieved from the server. This callback function will receive three parameters: the Memcached object, the requested key, and a value variable passed by reference. This callback function is responsible for deciding to set a default value when the key has no value by returning true or false. If the callback returns true, Memcached will store the value stored in the "outgoing parameter" (the value variable passed by reference) to the memcached server and return it to the original calling function. Only Memcached::get() and Memcached::getByKey() support this type of callback, because the Memcache protocol does not support providing information about unretrieved keys when requesting multiple keys.
Example #2 Read through the callback example
<?php $m = new Memcached(); $m->addServer('localhost', 11211); $profile_info = $m->get('user:'.$user_id, 'user_info_cb'); function user_info_cb($memc, $key, &$value) { $user_id = substr($key, 5); /* 从数据库读取个人信息 */ /* ... */ $value = $profile_info; return true; } ?>
4. Sessions support
memcached provides a custom session processor that can be used to store user session data to the memcached server. A completely separate memcached instance will be used internally, so you can set up a different server pool if needed. Session keys are stored under the prefix memc.sess.key., so please be aware of this if you are using the same server pool for sessions and normal caching. Annotation: Another reason why the session is separated from the normal cache is that when the normal cache fills up the memcached server, your session may be kicked out of the cache, causing the user to be disconnected inexplicably.
session.save_handler is set to memcached to enable memcached's session processor. session.save_path defines a comma-separated hostname:port style session cache server pool, for example: "sess1:11211, sess2:11211".
5. Memcached class
represents the connection to the memcached service cluster.
Memcached::add — Add an element to a new key
Memcached::addByKey — Add an element to a new key on the specified server
Memcached::addServer — Add a server to the server pool
Memcached::addServers — Add multiple servers to the server pool
Memcached::append — Append data to existing elements
Memcached::appendByKey — Append data to existing elements on the specified server
Memcached:: cas — Compare and exchange values
Memcached::casByKey — Compare and exchange values on the specified server
Memcached::__construct — Create a Memcached instance
Memcached::decrement — Decrement the value of a numeric element
Memcached:: decrementByKey — Decrement numeric item's value, stored on a specific server
Memcached::delete — Delete an element
Memcached::deleteByKey — Delete an element from the specified server
Memcached::deleteMulti — Delete multiple items
Memcached: :deleteMultiByKey — Delete multiple items from a specific server
Memcached::fetch — Fetch the next result
Memcached::fetchAll — Fetch all remaining results
Memcached::flush — Invalidate all elements in the cache
Memcached::get — Retrieve an element
Memcached::getAllKeys — Gets the keys stored on all the servers
Memcached::getByKey — Retrieve an element from a specific server
Memcached::getDelayed — Request multiple elements
Memcached ::getDelayedByKey — Request multiple elements from a specified server
Memcached::getMulti — Retrieve multiple elements
Memcached::getMultiByKey — Retrieve multiple elements from a specific server
Memcached::getOption — Get the option value of Memcached
Memcached::getResultCode — Returns the result code of the last operation
Memcached::getResultMessage — Returns the result description message of the last operation
Memcached::getServerByKey — Gets the server information mapped by a key
Memcached::getServerList — Get the server list in the server pool
Memcached::getStats — Get the statistical information of the server pool
Memcached::getVersion — Get the version information of all servers in the server pool
Memcached::increment — Increase the value of the numerical element
Memcached::incrementByKey — Increment numeric item's value, stored on a specific server
Memcached::isPersistent — Check if a persistent connection to memcache is being used
Memcached::isPristine — Check if the instance was recently created
Memcached ::prepend — Prepend data to an existing item on a specific server
Memcached::prependByKey — Prepend data to an existing item on a specific server
Memcached::quit — Close any open connections
Memcached::replace — Replace Elements existing under key
Memcached::replaceByKey — Replace the item under an existing key on a specific server
Memcached::resetServerList — Clears all servers from the server list
Memcached::set — Store an element
Memcached ::setByKey — Store an item on a specific server
Memcached::setMulti — Store multiple elements
Memcached::setMultiByKey — Store multiple items on a specific server
Memcached::setOption — Set a memcached option
Memcached ::setOptions — Set Memcached options
Memcached::setSaslAuthData — Set the credentials to use for authentication
Memcached::touch — Set a new expiration on an item
Memcached::touchByKey — Set a new expiration on an item on a specific server

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP makes it easy to create interactive web content. 1) Dynamically generate content by embedding HTML and display it in real time based on user input or database data. 2) Process form submission and generate dynamic output to ensure that htmlspecialchars is used to prevent XSS. 3) Use MySQL to create a user registration system, and use password_hash and preprocessing statements to enhance security. Mastering these techniques will improve the efficiency of web development.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment