


Introduction and working principle of memcached in PHP_PHP tutorial
Introduction to memcached
1. Concept
1. memcached
From wiki: memcache is the name of this project, and memcached is the file name of its server-side main program.
Memcache is a project of danga.com, which first served liveJournal. Currently, many people use this caching project to build their own large-load websites to share the pressure on the database. Its working mechanism is to open up a space in the memory and then create a hash table. The main program of memcached manages this hash table by itself
2. Working principle
memcached runs in one or more servers as a daemon, accepting connection operations from multiple clients at any time. Clients can be written in various languages. Currently known client APIs include Perl/php/python/ruby /java/c#/c etc. After the client establishes a connection with the memcached service, the next step is to access objects. Each accessed object has a unique key. Objects saved in memcached are placed in memory rather than in cache files. .
It adopts C/S mode, starts the service process on the server side, specifies the listening IP, its own port number, and the memory size used. The main program of the current version is implemented in C language
3. How to use it in PHP
1. Install PHP’s memcache extension. After installation, you can view the extension configuration information through phpinfo(), and you can change the configuration information in php.ini.
2. Test code:
Copy to Clipboard
$memcache->connect('127.0.0.1', 11211) or die ("Could not connect");
$version = $memcache- >getVersion();
echo "Server's version: ".$version."n";
$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$ tmp_object->int_attr = 123;
$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
echo "Store data in the cache (data will expire in 10 seconds)n";
$get_result = $memcache->get('key');
echo "Data from the cache:n";
var_dump( $get_result);
?>
References to all the above functions can be found in the PHP Manual

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

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

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

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

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

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

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

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

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