search
HomeBackend DevelopmentPHP Tutorial Memcached - PHP 装配&使用

Memcached - PHP 安装&使用

下载Memcached:
http://danga.com/memcached/download.bml

安装:
下载安装libevent,已安装可跳过:
下载地址:http://www.monkey.org/~provos/libevent/

Memcached For PHP Module下载地址:
http://pecl.php.net/package/memcache
http://cn.php.net/manual/zh/ref.memcache.php

安装Memcached服务端

root@tonyvicky:# tar vxzf memcached-1.1.12.tar.gz
root@tonyvicky:# cd memcached-1.1.12
root@tonyvicky:# ./configure --prefix=/usr/local/memcached
root@tonyvicky:# make
root@tonyvicky:# make install

安装完毕重启服务:

root@tonyvicky:# cd /usr/local/memcached/bin
root@tonyvicky:# ./memcached -d -m 50 -p 11211 -u root



安装PHP模块

root@tonyvicky:# tar vxzf memcache-1.5.tgz
root@tonyvicky:# cd memcache-1.5
root@tonyvicky:# /usr/local/php/bin/phpize
root@tonyvicky:# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir
root@tonyvicky:# make
root@tonyvicky:# make install

安装完后可能会有如下提示:

Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20050922/

修改php.ini

extension_dir = "./"

修改为:

extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20050922/"

添加一行:

extension=memcache.so


安装完毕,测试:

PHP代码

? $memcache ?=? new ?Memcache;? //创建一个memcache对象 ?

? $memcache ->connect( 'localhost' ,?11211)? or ? die ?( "Could?not?connect" );? //连接Memcached服务器

? $memcache ->set( 'key' ,? 'test' );? //设置一个变量到内存中,名称是key?值是test ?

? $get_value ?=? $memcache ->get( 'key' );? //从内存中取出key的值 ??

? echo ? $get_value ;?

?>

Memcache的内定Function
connect(ip, port)
set(key, value)? 数据压缩:set(key, value,?MEMCACHE_COMPRESSED )
get(key)
increment , 同set(好像多了个计数功能,没试过)
getStats() 返回当前内存占用情况(return array) print_r($memcached->getStats());
flush? 清空内存占用.

代码范例(来自chinaunix):

PHP代码

//访问统计 ??

$memcache ?=? new ?Memcache;??

$memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );?

if ( $s = $memcache ->get(’a’))?{?? ????$s = $s +1;?? ????$memcache ->set(’a’, $s );?? }?

else ?? $memcache ->set(’a’,1);

? echo ?’访问结果为:’. $s ;??

?>?

等效PHP代码

$memcache ?=? new ?Memcache;?

$memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );?? ?

if ( $s = $memcache ->increment(’a’,1))?{?? ????echo ? $s ;?????? }?

else ?? $memcache ->set(’a’,1);

? ?>??

?数据压缩PHP代码

$memcache ?=? new ?Memcache;??

$memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );

? $test =( str_repeat (’jetwong’,100000));?? $memcache ->set(’b’,( $test ));?

?>

? 使用压缩:??

? $memcache ?=? new ?Memcache;

? $memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );

? $test =( str_repeat (’jetwong’,100000));?

$memcache ->set(’b’,( $test ),MEMCACHE_COMPRESSED);?

?>??

内存的更新清理PHP代码

? $memcache ?=? new ?Memcache;?

$memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );??

? /*设置值*/

? $status ?=? $memcache ->getStats();??

echo ?’设置前内存使用情况’. $status [’bytes’].’
’;?

echo ?’设置后’;?? for ( $i =0; $i $i ++)?{?? ????

?????? $memcache ->set(’b’. $i ,rand(1,99));?????? ???

?????? echo ?’
’.
$i .’->’. $memcache ->get(’b’. $i );

}

? /*查看设置的值*/ ??

$status ?=? $memcache ->getStats();

? echo ?’ delete 前内存使用情况’. $status [’bytes’].’
’;??

echo ?’
开始
delete ’;??

for ( $i =0; $i $i ++)?{?? ??

? ? $memcache -> delete (’b’. $i );??????

??? echo ?’
’.
$i .’->’. $memcache ->get(’b’. $i );??

}??

? /*查看flush使用的情况*/ ?

$status ?=? $memcache ->getStats();??

echo ?’使用 flush 前内存使用情况’. $status [’bytes’].’
’;??

echo ?’使用 flush 情况:’;?

for ( $i =0; $i $i ++)?{?? ????

?? $memcache ->set(’b’. $i ,rand(1,99));?????? ????

?? echo ?’
’.
$i .’->’. $memcache ->get(’b’. $i );????

}??

$memcache -> flush ();?

echo ?’ flush 之后:’;?

for ( $i =0; $i $i ++)?{?????????? ??

? echo ?’
’.
$i .’->’. $memcache ->get(’b’. $i );

}??

$status ?=? $memcache ->getStats();?

echo ?’ flush 后内存使用情况’. $status [’bytes’].’
’;??

?>?

内存超量测试PHP代码

$memcache ?=? new ?Memcache;??

$memcache ->connect(’localhost’,?11211)? or ? die ?( "Could?not?connect" );?? ?? //600K左右

? $test1 =? str_repeat (’jetlee’,100000);?? //600K左右 ??

$test2 =? str_repeat (’jetlee’,100000);?? //600K左右 ??

$test3 =? str_repeat (’李连杰’,200000);?? //600K左右 ?

$test4 =? str_repeat (’连杰李’,100000);?? //200K ?

$test5 =? file_get_contents (’http: //img.pconline.com.cn/images/photoblog/2988177/20068/4/1154688770042_mthumb.JPG’);

$test6 =? file_get_contents (’http: //img.pconline.com.cn/images/photoblog/1767557/20069/28/1159417108902_mthumb.jpg’); ?? ?

for ( $i =1; $i $i ++)?{?? ???

?? $j =’test’. $i ;?? ??

?? if ( $memcache ->set( $j ,$ $j ))

?? {?? ??????

? ? ? ? ? echo ? $j .’->设置成功
’;??

?? ?????? $status ?=? $memcache ->getStats();

?? ??????? echo ?’内存:’. $status [’bytes’].’
’;

?? } else ?{

?? ??????? echo ? $j .’->设置失败
’;

? ?? ? ??? }

? }?

?>

总结 PHP代码

? //设置篇

? if ( $data ?=? $memcache ->get(’k’, $v ))?{?? ???

?? //显示我们的数据 ?? ???

}?? else ?{?

??? $data ?=?get_from_database;? //得到数据源 ?? ??

? ? if (! $memcache ->set(’k’, $data ),?MEMCACHE_COMPRESSED)? //开始设置 ?? ?

? ? log();????//不成功,记录失败信息???? ??

}

?>?

Statement
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
在PHP中使用Memcache缓存常见问题及解决办法在PHP中使用Memcache缓存常见问题及解决办法May 16, 2023 am 09:07 AM

在Web应用中,缓存是一个非常重要的技术。缓存可以大大减少数据库和服务器的负载,提高Web应用的性能。Memcache是一种高性能的分布式内存缓存系统,常用于Web应用中。在PHP中使用Memcache缓存,有时会出现一些问题,本文将介绍这些问题及其解决办法。问题一:无法连接到Memcache服务器在使用Memcache缓存时,第一个遇到的问题可能是无法连接

利用Memcache缓存技术提高PHP应用的并发处理能力利用Memcache缓存技术提高PHP应用的并发处理能力May 18, 2023 am 08:12 AM

随着互联网的飞速发展,越来越多的应用程序需要面对大量的并发请求,如何提高应用的并发处理能力成为开发者们需要解决的问题。其中,利用Memcache缓存技术进行并发优化成为了相对较为流行的一种方案。Memcache是一种高效的缓存技术,适用于大型Web应用程序、数据库和分布式系统。其特点是将数据存储于内存中,以实现高速读写操作。在Web应用程序的数据访问过程中,

PHP应用中的Memcache缓存技术如何避免出现数据损坏PHP应用中的Memcache缓存技术如何避免出现数据损坏May 15, 2023 pm 10:01 PM

Memcache是一种在Web应用中常用的缓存技术,对于高并发的应用,它能够减轻数据库的压力,提高数据读取速度,降低系统响应时间。但是,在实际运用中,由于某些原因,会出现缓存数据被破坏的情况。本文主要从以下几个方面来讲述如何避免PHP应用中Memcache缓存技术出现数据损坏的情况。一、数据序列化通常情况下,我们将需要缓存的数据直接以对象形式存储到Memca

Memcache缓存技术在PHP项目中的应用和实践Memcache缓存技术在PHP项目中的应用和实践May 17, 2023 pm 02:10 PM

Memcache是一种开源的、分布式的缓存技术。它通过将数据存储在内存中,极大地提高了数据的访问速度,从而提升了网站的性能和响应速度。在PHP项目中,Memcache缓存技术也被广泛应用,并且取得了很好的效果。本篇文章将深入探讨Memcache缓存技术在PHP项目中的应用和实践。一、Memcache的原理和优势Memcache是一种内存缓存技术,它可以将数据

利用PHP中的Memcache缓存优化Gzip压缩算法利用PHP中的Memcache缓存优化Gzip压缩算法May 15, 2023 pm 04:31 PM

随着网络技术越来越发达,网站的访问量逐渐增多,为了提升用户体验,我们需要尽可能地减少网页的加载时间和传输数据的大小。其中,Gzip压缩算法是一种经典的数据压缩算法,可以在传输数据时将数据压缩,减少传输数据的大小,从而提升网页的加载速度和用户体验。在使用Gzip压缩算法来优化网站时,我们还可以结合PHP中的Memcache缓存技术来进一步提升网站的性能。一、G

如何使用PHP中的Memcache缓存技术提高网站的大并发性能如何使用PHP中的Memcache缓存技术提高网站的大并发性能May 17, 2023 pm 05:00 PM

随着互联网技术的不断发展,网站的用户访问量越来越大,带来的并发访问量也越来越高。为了应对这种高并发访问,常用的手段是使用缓存技术。而在PHP语言中,Memcache缓存技术是一种非常有效的解决方案。Memcache是一种分布式缓存系统,能够将大量的数据缓存在内存中,并能够从内存中快速读取,从而提高网站的响应速度和并发能力。在本文中,我们将介绍如何使用PHP中

Memcache缓存技术如何构建PHP中的缓存架构Memcache缓存技术如何构建PHP中的缓存架构May 15, 2023 pm 05:40 PM

随着互联网时代的到来,Web应用程序的访问量越来越大,同时性能也愈发成为用户优先考量因素之一。缓存技术因此应运而生。Memcache作为一种高性能、分布式的内存对象缓存系统,被广泛应用于Web开发中。在PHP中构建Memcache缓存架构,可大幅提升Web应用程序的性能和响应速度。下面我们将分为以下几个方面,阐述Memcache缓存技术在PHP中的构建方式。

如何使用Memcache缓存技术提高PHP应用的负载均衡如何使用Memcache缓存技术提高PHP应用的负载均衡May 15, 2023 pm 08:01 PM

随着互联网技术的不断发展,越来越多的网站和应用拥有了成千上万的日活用户,这也对服务器的性能提出了更高的要求。在PHP应用中,Memcache缓存技术是一种非常有用的工具,能够提高系统的负载均衡,缓解服务器的压力。本文将介绍如何使用Memcache缓存技术提高PHP应用的负载均衡。Memcache缓存技术是什么?Memcache是一种高速缓存技术,可以将经常访

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version