Memcahe 在 PHP 中的使用
Memcache 是一个高性能的分布式的内存对象缓存系统,通过在内存里维护一个统一的巨大的hash表,它能够用来存储各种格式的数据,包括图像、视频、文件以及数据库检索的结果等。简单的说就是将数据调用到内存中,然后从内存中读取,从而大大提高读取速度。(选自百度百科)
Memcache 在PHP 中有面向过程和面向对象两种使用,这里主要讲述面向对象的使用,具体可以参考PHP 手册。
Memcache 的接口
面向对象的接口:
1、Memcache::connect :打开一个Memcache 连接,例如:
$mem=new Memcache; //实例化一个对象
$mem->connect('localhost',11211); //打开连接,第一个参数为:主机地址,可以是域名、IP地址;第二个参数为:端口
?>
2、Memcache::pconnect:打开一个到Memcache的持久连接,功能和使用同上
3、Memcache::close:关闭一个Memcache 的连接,释放资源
4、Memcache::add:向Memcache hash 表中添加一个键和值。有四个参数
bool Memcache::add ( string key, mixed var [, int flag [, int expire]] )
1)string key:键名
2)mixed var:键的值,可以是任意类型(字符串、数字、数组、对象)
3)int flag:可选参数,一般使用MEMCACHE_COMPRESSED 表示使用压缩的方式
4)int expire:可选参数,设置时间,以秒为单位
$mem->add('mystr','This is a string!',MEMCACHE_COMPRESSED,3600);
5、Memcache::set:保存数据到Memcache服务器上,其使用方法和add 类似,不过Memcache::set 可以更改键的值
6、Memcache::get: 提取一个保存在Memcache服务器上的数据,参数就一个:键名称。例如:要提取Memcache 服务器中 键mystr 的值
echo $mem->get('mystr');
7、Memcache::delete:删除Memcache 服务器中的一个键,参数就一个:键名称
$mem->delete('mystr');
8、Memcache::flush:删除保存在Memcache 服务器中的所有键值,没有参数
9、Memcache::getStats:获取当前Memcache 服务器运行的状态,没有参数
10、Memcache::getVersion:获取当前Memcache 服务器的版本,没有参数
11、Memcache::replace:替换Memcache 服务器中已经存在的键的值,使用方法和add/set 类似
12、Memcache::addServer:添加多个Memcache 服务器,使用方法和Memcache::connect 类似
需要说明的是,如果使用两次或多次Memcache::add 对同一键赋值,那么该键的值不会被覆盖,只有使用Memcahe::replace 或Memcache::set 才可以。
摘自 Lee.的专栏

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.

According to news from this website on September 3, Korean media etnews reported yesterday (local time) that Samsung Electronics and SK Hynix’s “HBM-like” stacked structure mobile memory products will be commercialized after 2026. Sources said that the two Korean memory giants regard stacked mobile memory as an important source of future revenue and plan to expand "HBM-like memory" to smartphones, tablets and laptops to provide power for end-side AI. According to previous reports on this site, Samsung Electronics’ product is called LPWide I/O memory, and SK Hynix calls this technology VFO. The two companies have used roughly the same technical route, which is to combine fan-out packaging and vertical channels. Samsung Electronics’ LPWide I/O memory has a bit width of 512

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

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