emiliosh/async-telescope 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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.

  1. Install:
composer require sweetstack/async-telescope
  1. 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.

  1. 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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-08-02