php 安装 phpredis扩展

mac2024-04-09  31

windows环境

需要安装 php_redis.dll 和 php_igbinary.dll 下载 igbinary igbinary 是一个 php 的第三方扩展,相对于 php 自带的 serialize,igbinary 具有性能高,节省空间的特点,在某些高要求的场景中使用它是个不错的方案。 php_redis.dll

配置 将 php_redis.dll 和 php_igbinary.dll放大php安装目录ext目录里 配置php.ini加入下面的内容

extension=php_igbinary.dll extension=php_redis.dll

使用 重启web服务器

use Redis; $this->redis =new Redis(); $this->config = config('database.redis.default'); $host = isset($config['host'])?$config['host']:'127.0.0.1'; $port = isset($config['port'])?$config['port']:6379; $this->redis->connect($host,$port); $this->redis->auth($config['password']); $this->redis->set('admin','sdfsdf',10); //最后一个参数单位为秒 $sfds = $this->redis->get('admin');
最新回复(0)