`
chmod777
  • 浏览: 45467 次
  • 性别: Icon_minigender_1
  • 来自: 南京
文章分类
社区版块
存档分类
最新评论

php memcache functions

PHP 
阅读更多
1.*crment functions:
int Memcache::decrement  ( string $key  [, int $value  ] )//自减 默认值为1
int Memcache::increment  ( string $key  [, int $value  ] )//自增 默认值为1
$memcache = new Memcache;
$memcache->connect('127.0.0.1', 11211);
$memcache->set('num',6);//value 为num
echo $memcache->get('num'); //输出6
echo $memcache->decrement('num', 3);//输出3
$memcache->set('num','x');//value 为string
echo $memcache->decrement('num', 3);//输出0


increment和decrment相似:
$memcache->set('num','x');//value 为string
echo $memcache->increment('num', 3);//输出3
分享到:
评论

相关推荐

    php帮助文档,php。chm,php必备的中文手册

    Memcache Functions LXXVI. Mhash Functions LXXVII. Mimetype Functions LXXVIII. Ming functions for Flash LXXIX. Miscellaneous Functions LXXX. mnoGoSearch Functions LXXXI. Microsoft SQL Server Functions...

    php手册PHP5研究室编无乱码版本chm

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for ...

    memcached_functions_mysql

    **描述分析:** "memcache与mysql结合必备" 表明Memcached Functions for MySQL是实现这两个技术协同工作的一个关键组件。Memcache是一个内存对象缓存系统,用于存储和检索数据,而MySQL则是一种关系型数据库管理...

    php手册.chm,php手册

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    PHP5 完整官方 中文教程

    Memcache — Memcache Functions mhash — Mhash Functions Mimetype — Mimetype Functions Ming (flash) — Ming functions for Flash Misc. — Miscellaneous Functions mnoGoSearch — mnoGoSearch Functions MS...

    构架Nginx+PHP(Fastcgi)+MySQL+Memcache高性能web服务器

    ### 构建Nginx+PHP(Fastcgi)+MySQL+Memcache高性能Web服务器 #### 一、概述 本文档旨在详细介绍如何构建一个基于Nginx、PHP(Fastcgi)、MySQL以及Memcache的高性能Web服务器架构(简称LEMP+Memcache)。此架构充分...

    PHP函数参考手册大全

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    中文版PHP使用手册

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    PHP手册2007整合中文版

    Memcache Functions LXXXVII. Mhash Functions LXXXVIII. Mimetype Functions LXXXIX. Ming functions for Flash XC. Miscellaneous Functions XCI. mnoGoSearch Functions XCII. Microsoft SQL Server Functions ...

    PHP官方手册中文版

    Memcache Functions LXXXVII. Mhash Functions LXXXVIII. Mimetype Functions LXXXIX. Ming functions for Flash XC. Miscellaneous Functions XCI. mnoGoSearch Functions XCII. Microsoft SQL Server ...

    PHP5中文参考手册

    Memcache — Memcache Functions mhash — Mhash Functions Mimetype — Mimetype Functions Ming (flash) — Ming functions for Flash Misc. — Miscellaneous Functions mnoGoSearch — mnoGoSearch Functions MS...

    PHP5 开发手册 简体中文手册

    Memcache Functions LXXV. Mhash Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash LXXVIII. Miscellaneous Functions LXXIX. mnoGoSearch Functions LXXX. Microsoft SQL Server Functions ...

    经典收藏最全php5.0查询手册

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    PHP手册(带评论版-2008-03-14).part2.rar

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    PHP手册(带评论版-2008-03-14).part1.rar

    Memcache Functions LXXIII. Mhash Functions LXXIV. Microsoft SQL Server and Sybase Functions (PDO_DBLIB) LXXV. Microsoft SQL Server Functions LXXVI. Mimetype Functions LXXVII. Ming functions for Flash...

    PHP+Memcache实现wordpress访问总数统计(非插件)

    本篇文章介绍了如何利用PHP结合Memcache技术实现一个WordPress网站的访问总数统计功能。这种方法不依赖于任何插件,而是直接在WordPress主题的functions.php文件中编写代码实现。下面将详细阐述实现该功能所需掌握的...

    PHP框架Gaeaphp.zip

    具体配置文件项在/app/configs下|-db.php 数据库(Mysql)配置文件|-memcache.php 缓存(Memcache)配置文件|-route.php 路由配置文件|-smarty.php 模版引擎配置文件|-system.php 系统配置文件系统配置结构为一维数组,...

    PHP缓存库phpFastCache.zip

     // In your Class, Functions, PHP Pages  // try to get from Cache first. product_page = YOUR Identity Keyword  $products = $cache->get("product_page");  if($products == null) {  $products = YOUR...

    phpfastcache-6.0.8-3-gd36e230缓存类.zip

     // In your Class, Functions, PHP Pages  // try to get from Cache first. product_page = YOUR Identity Keyword  $products = $cache->get("product_page"); if($products == null)...

    ThinkPHP2.0完全开发手册

    7. **助手函数(Assist Functions)**:ThinkPHP2.0提供了大量内置助手函数,如assign(分配变量到视图)、U(生成URL)等,简化日常开发工作。 8. **AOP(面向切面编程)**:支持面向切面编程,允许开发者插入“切面...

Global site tag (gtag.js) - Google Analytics