xgbnl/dingo

dev-main 2023-09-05 07:58 UTC

This package is auto-updated.

Last update: 2024-05-05 09:30:56 UTC


README

About Elephant

To customize the connection for your cache driver, please invoke the withConnection method of RedisClient within the ServiceProvider.

namespace App\Providers;

use Elephant\Support\Facades\RedisClient;

class ServiceProvider 
{

    public function register():void
    {
        RedisClient::withConnection('custom_connection');
    }

}