Blogger Information
Blog 5
fans 0
comment 0
visits 3077
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
redis入门学习
echo
Original
685 people have browsed it

redis简介

Redis 是完全开源免费的,遵守BSD协议,是一个高性能的key-value数据库。

Redis 与其他 key - value 缓存产品有以下三个特点:

  • 1.Redis支持数据的Redis不仅仅支持简单的key-value类型的数据,同时还提供list,set,zset,hash等数据结构的存储可以将内存中的数据保存在磁盘中,重启的时候可以再次加载进行使用。
  • 2.Redis不仅仅支持简单的key-value类型的数据,同时还提供list,set,zset,hash等数据结构的存储
  • 3.Redis支持数据的备份,即master-slave模式的数据备份

redis的优势

性能极高 – Redis能读的速度是110000次/s,写的速度是81000次/s 。
丰富的数据类型 – Redis支持二进制案例的 Strings, Lists, Hashes, Sets 及 Ordered Sets 数据类型操作。
原子 – Redis的所有操作都是原子性的,意思就是要么成功执行要么失败完全不执行。单个操作是原子性的。多个操作也支持事务,即原子性,通过MULTI和EXEC指令包起来。
丰富的特性 – Redis还支持 publish/subscribe, 通知, key 过期等等特性。

redis的扩展与安装

Windows下安装
下载地址:https://github.com/MSOpenTech/redis/releases

扩展的安装

  • 1.扩展版本的查看 : 使用 phpinfo() 函数查看PHP的版本信息
  • 2.扩展文件的下载 : 下载php_igbinary-3.0.1-7.2-nts-vc15-x64.zip,php_redis-3.1.4rc3-7.2-nts-vc15-x64.zip(一定要保证版本的正确性)

    下载地址
    php_redis 扩展: https://windows.php.net/downloads/pecl/snaps/redis/

    php_igbinary 扩展: https://windows.php.net/downloads/pecl/releases/igbinary/

  • 3.扩展文件的放置 : 解压缩后,将php_redis.dll和php_redis.pdb,php_igbinary.dll拷贝至php的ext目录下

    注意:
    extension=php_igbinary.dll一定要放在 extension=php_redis.dll的前面,否则此扩展不会生效

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post