zoukankan      html  css  js  c++  java
  • Redis在PHP中的应用

     

    PHP redis的使用方法详解。php上使用redis主要有两种方式,一种是Predis,一种是phpredis。phpredis是php的一个扩展,以C语言编写的高性能链表。本文讲解Predis的使用。Predis是PHP语言编写。
    
        PHP redis的使用方法详解。php上使用redis主要有两种方式,一种是Predis,一种是phpredis。phpredis是php的一个扩展,以C语言编写的高性能链表。本文讲解Predis的使用。
        Predis是Redis官方推出的由PHP原生语言编写的客户端。由于Predis采用了命名空间的方式,所以Predis要求PHP版本最低为5.3。    
        Predis开源且托管在GitHub上https://github.com/nrk/predis/。下载整个文件夹复制到项目目录即可。
    //引入autoload.php文件
    require './predis/autoload.php';
    
    //实例化
    $redis = New PredisClient();
    /*这个是简化版,等同于$redis = New PredisClient(array(
     * 'scheme' => 'tcp',
     * 'host' => '127.0.0.1'
     * 'port' => 6379
     *));
     */
    
    //GET
    $redis->get('key');
    
    //LPUSH
    $redis->lpush('key', '1', '2', '3');
    
    //MSET 相当于$redis->MSET('article:1:title', 'biaoti', 'article:1:content', 'neirong', 'ctime', 'shijian');
    $article = array('article:1:title'=>'biaoti', 'article:1:content'=>'neirong', 'article:1:ctime'=>'shijian');
    $redis->MSET('key', $article);
    
    //MGET
    $articleKeys = array_keys($article);
    $redis->MGET($articleKeys);
    
    //SORT
    //SORT articleList BY article:*->time LIMIT 0 10 GET article:*->title GET # DESC ALPHA STORE storeKey
    $sort = array(
        'by' => 'article:*->time',
        'limit' => array(0, 10),
        'get' => array('article:*->title', '#'),
        'sort' => 'desc',
        'alpha' => true,
        'store' => 'storeKey'
    );
    
    Predis的封装之后,用起来非常方便,关联数组的引入是开发效率非常高的。更多的内容可以参考Predis文档:https://github.com/nrk/predis/blob/v0.8/FAQ.md
  • 相关阅读:
    ASP.NET Core 程序集注入(三)
    ASP.NET Core 程序集注入(二)
    ASP.NET Core 程序集注入(一)
    EFCore DbFirst从数据库生成实体类
    Notepad++实现代码格式化
    EF6/EFCore Code-First Timestamp SQL Server
    MySQL 实现 EF Code First TimeStamp/RowVersion 并发控制
    EntityFramework系列:MySql的RowVersion
    ansible常用命令大全
    python内置函数大全
  • 原文地址:https://www.cnblogs.com/sunscheung/p/4754508.html
Copyright © 2011-2022 走看看