'php'에 해당되는 글 1건

  1. 2023.02.16 windows php redis 설정 by 이그제민

windows php redis 설정

windows 2023. 2. 16. 17:04

https://pecl.php.net/package/redis
https://pecl.php.net/package/igbinary

각 버전에 맞는 dll 다운

ext 에 붙여넣고 php.ini에 추가
php_igbinary.dll
php_redis.dll

; redis 추가
extension=redis
; igbinary 추가
; Load igbinary extension
[igbinary]
extension=igbinary

; session.serialize_handler=php <- 이거 주석
session.serialize_handler=igbinary
; Enable or disable compacting of duplicate strings
; The default is On.
igbinary.compact_strings=On
; If uncommented, use igbinary as the serializer of APCu
; (APCu 5.1.10 or newer is strongly recommended)
;apc.serializer=igbinary


cmd 에서 php -m 으로 에러안나는지 확인 후 아파치 start

'windows' 카테고리의 다른 글

xampp 아파치 설정  (0) 2023.02.22
ubuntu 22.04 virtual box 설치  (0) 2023.01.30
windows command  (0) 2023.01.25
Posted by 이그제민
l