LaravelPackages.net
Acme Inc.
Toggle sidebar
falcolee/laravel-swoole-redis

Laravel package to provide swoole redis pool integration,laravel redis pool cache and session driver. Aims to avoid redis server timeout exception

596
12
0.0.1
About falcolee/laravel-swoole-redis

falcolee/laravel-swoole-redis is a Laravel package for laravel package to provide swoole redis pool integration,laravel redis pool cache and session driver. aims to avoid redis server timeout exception. It currently has 12 GitHub stars and 596 downloads on Packagist (latest version 0.0.1). Install it with composer require falcolee/laravel-swoole-redis. Discover more Laravel packages by falcolee or browse all Laravel packages to compare alternatives.

Last updated

laravel swoole redis pool

Laravel package to provide swoole redis pool integration,laravel redis pool cache and session driver. Aims to avoid redis server timeout exception

public $config = [ //min 3 'poolMin' => 3, //max 1000 'poolMax' => 64, //when lost connection retry 'retryTimes' => 2, //options config 'connect_timeout' => 1, 'timeout' => 1, 'reconnect' => 1 ];

install

composer require falcolee/laravel-swoole-redis

how to use

  • step 1: make true you've got a right swoole environment
  • step 2: add
    'redis_pool' => [
        'driver' => 'redis',
        'connection' => 'default',
    ],

in your config/cache.php stores section below redis array

  • step 3: change your redis drive or session drive to redis_pool in your .env file , that is it
Comments