Reputation: 552
I want use Redis cache on my Laravel website with php 8, PHP 8 does not provide Redis Package by default.How can I download Redis package for php 8?
I have try to download from website https://pecl.php.net/package/redis/5.1.1/windows
but only available for php 7 , not for php 8
Upvotes: 0
Views: 9818
Reputation: 2197
I have build a DLL for Windows x64
https://shuchkin.ru/2024/02/phpredis-for-windows-php-8-3-php_redis-dll/ https://shuchkin.ru/2025/01/phpredis-for-windows-php-8-4-php_redis-dll/
Upvotes: 2
Reputation: 4087
Select the most recent version of the Redis package from the following URL
For example, you can select the release 6.0.2 and you will be able to see the compatible PHP version for this particular package at the bottom of the page.
Upvotes: 1
Reputation: 345
https://github.com/phpredis/phpredis/blob/develop/INSTALL.md
PHPRedis is compatible with PHP 8.x versions.
Upvotes: 1