Home Backend Development PHP Tutorial Installation and use of php-Memcached

Installation and use of php-Memcached

Nov 21, 2016 pm 05:34 PM
memcached php

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
Copy after login

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
Copy after login

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
Copy after login

An error may be reported during the installation process:

未知类型名称:memcached_server_instance_st
Copy after login

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;
Copy after login

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

Installation and use of php-Memcached

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(&#39;localhost&#39;, 11211);
    $items = array(
        &#39;key1&#39; => &#39;value1&#39;,
        &#39;key2&#39; => &#39;value2&#39;,
        &#39;key3&#39; => &#39;value3&#39;
    );
    $m->setMulti($items);
    $m->getDelayed(array(&#39;key1&#39;, &#39;key3&#39;), true, &#39;result_cb&#39;);
    function result_cb($memc, $item)
    {
        var_dump($item);
    }
?>
Copy after login

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)
}
Copy after login

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(&#39;localhost&#39;, 11211);
    $profile_info = $m->get(&#39;user:&#39;.$user_id, &#39;user_info_cb&#39;);
    function user_info_cb($memc, $key, &$value)
    {
        $user_id = substr($key, 5);
        /* 从数据库读取个人信息 */
        /* ... */
        $value = $profile_info;
        return true;
    }
?>
Copy after login

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


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

Video Face Swap

Video Face Swap

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

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)

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

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles