Phpredis

phpredis win32 binaries

View project onGitHub

March 28, 2013

PHP 5.4

PHP 5.3

Install instructions

Put both php_redis_*.dll and php_igbinary_*.dll in your php extensions folder and add both to php.ini (load igbinary before phpredis):

extension=php_igbinary_*.dll
extension=php_redis_*.dll

Use the ts (threadsafe) when using PHP as a module (e.g. apache module) where requests are processed using threads. Use the nts (nonthreadsafe) when running PHP as a process (e.g. with IIS/fastcgi). The nts version is generally faster than the ts version.

Compile flags

--enable-redis=shared --enable-redis-session --enable-igbinary=shared --enable-redis-igbinary

Links