>백엔드 개발 >PHP 튜토리얼 >PHP中Redis环境的配置【Windows10 Test】

PHP中Redis环境的配置【Windows10 Test】

WBOY
WBOY원래의
2016-06-20 12:31:551246검색

从 Redis.io的官方发现,官方是不提供redis for windows 的版本:

The Redis project does not officially support Windows. However, the Microsoft Open Tech group develops and maintains this Windows port targeting Win64. Learn more

Windows的版本由[MSOpenTech](https://github.com/MSOpenTech/redis)维护,release 版本下载:[https://github.com/MSOpenTech/redis/releases](https://github.com/MSOpenTech/redis/release)

Redis文件介绍:

  • redis-benchmark.exe #基准测试
  • redis-check-aof.exe # aof
  • redischeck-dump.exe # dump
  • redis-cli.exe # 客户端
  • redis-server.exe # 服务器
  • redis.windows.conf # 配置文件

Redis服务器启动:

>redis-server.exe redis.windows.conf

php_redis.dll下载:

php的官方就已经提供了( https://pecl.php.net/package/redis),看好php版本对应的dll,同时要选择php的位数,可以下面代码查看:

<?phpsystem("echo %PROCESSOR_ARCHITECTURE%");

最后就是在 php.ini中添加

;[redis]extension=php_redis.dll

重启服务器,一切OK!

以上

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.