sweetstack/async-telescope
| Install | |
|---|---|
composer require sweetstack/async-telescope |
|
| License: | MIT |
| Last Updated: | Aug 18, 2021 |
| Links: | GitHub · Packagist |
WORK IN PROGRESS - DO NOT USE IN PRODUCTION!
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',
],
],
Related Packages
Pixielity Foundation module for Laravel. Provides utilities, enums, exceptions,...
Production-safe, driver-agnostic dashboard for Laravel crons, queues and errors...
Enterprise Laravel Livewire CRUD generator with advanced analytics, calendar man...
A driver-agnostic control center for Laravel queues, jobs, commands and the sche...
Production-ready distributed tracing SDK for Laravel with event-sourced architec...