RedisService.php 389 B

1234567891011121314
  1. <?php
  2. namespace App\Services;
  3. use Illuminate\Support\Facades\Redis;
  4. class RedisService
  5. {
  6. //这不是一个必须的方法,如果不理解其中的含义,完全可以在你的代码中使用 Illuminate\Support\Facades\Redis; 进行 redis 的各种操作
  7. static public function redis(string $connection = 'cache')
  8. {
  9. return Redis::connection($connection);
  10. }
  11. }