|
PHP5中文手册
Memcache Functions简介Memcache module provides handy procedural and object oriented interface to memcached, highly effective caching daemon, which was especially designed to decrease database load in dynamic web applications. The Memcache module also provides a session handler (memcache). More information about memcached can be found at » http://www.danga.com/memcached/. 需求This module uses functions of » zlib to support on-the-fly data compression. Zlib is required to install this module. PHP 4.3.3 or newer is required to use the memcache extension. 安装本 » PECL 扩展未绑定于 PHP 中。 安装此 PECL 扩展库的信息可在手册中标题为 PECL 扩展库安装的一章中找到。 更多信息如新版本,下载,源文件,维护者信息以及更新日志等可以在这里找到: » http://pecl.php.net/package/memcache. In order to use these functions you must compile PHP with Memcache support by using the --enable-memcache[=DIR] option. You may optionally disable memcache session handler support by specifying --disable-memcache-session. Windows users will enable php_memcache.dll inside of php.ini in order to use these functions. 可以从 » PHP 下载页面或者 » http://snaps.php.net/ 下载此 PECL 扩展的 DLL 文件。 运行时配置这些函数的行为受 php.ini 的影响。
以下是配置选项的简要解释。
资源类型There is only one resource type used in memcache module - it's the link identifier for a cache server connection. 预定义常量
范例
Example#1 memcache extension overview example In this example, an object is being saved in the cache and then retrieved back. Object and other non-scalar types are serialized before saving, so it's impossible to store resources (i.e. connection identifiers and others) in the cache.
<?php
Example#2 Using memcache session handler
<?php Table of Contents
|