zoukankan      html  css  js  c++  java
  • 安装redis和phpredis模块

    安装redis

    shell> wget http://redis.googlecode.com/files/redis-2.0.4.tar.gz
    shell> tar zxvf redis-2.0.4.tar.gz
    shell> mv redis-2.0.4 redis
    shell> cd redis
    shell> make
    shell> redis-server 不要关
    shell> redis-cli
    redis>set foo bar
    OK
    redis>get foo
    "bar"
     
    安装phpredis模块
    https://github.com/owlient/phpredis
    下载phpredis
    解压
    shell> cd phpredis
    shell> /usr/local/php/bin/phpize      这个phpize是安装php模块的
    shell> ./configure --with-php-config=/usr/local/php/bin/php-config
    shell> make
    shell> make install
    接下来在php.ini中添加extension=redis.so   先要看看有没有extension_dir=/.......
    重启apache或者nginx
     
    php代码测试
    <?php
    $redis = new Redis();
    $redis->connect('127.0.0.1',6379);
    $redis->set('test','hello world!');
    echo $redis->get('test');
    ?>
    扩展阅读:http://blog.sina.com.cn/s/blog_6cfe25850101flga.html
  • 相关阅读:
    js 实现图片上传
    关于IOS不能使用JQUERY的ON事件
    js实现复制
    订单列表倒计时
    小程序实现倒计时
    微信小程序服务消息推送
    python爬虫七
    python爬虫六
    python爬虫五
    python爬虫四
  • 原文地址:https://www.cnblogs.com/jamesbd/p/3617352.html
Copyright © 2011-2022 走看看