emiliosh/async-telescope
Composer 安装命令:
composer require emiliosh/async-telescope
包简介
Asynchronous database storage driver for Laravel Telescope
README 文档
README
Asynchronous storage driver for Laravel Telescope
If you use Telescope in production and you are concerned with the amount of work Telescope does to store its entries during the request, you may use this driver to offload its storage jobs to the queue worker.
- Install:
composer require sweetstack/async-telescope
- Add this line to your
config/telescope.php:
... 'async' => true,
You may use this switch to toggle the async mode on and off according to your needs.
- Add these lines to your
app/Providers/TelescopeServiceProvider.php:
use Sweetstack\AsyncTelescope\AsyncDatabaseEntriesRepository; ... public function register() { ... AsyncDatabaseEntriesRepository::register($this->app); }
You should be all set, now Telescope will queue storage jobs instead of using the database directly during the request.
Additionally, if you want to configure a separate connection and / or queue for
the jobs pushed by the async driver, add in config/telescope.php:
'storage' => [ ... 'async' => [ 'connection' => 'redis', 'queue' => 'default', ], ],
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-02