sustartx/laravel-debugbar-memory

Add detailed memory usage measurement for code blocks in laravel debugbar

dev-main 2023-04-17 11:44 UTC

This package is auto-updated.

Last update: 2024-05-07 13:08:02 UTC


README

License

Add detailed memory usage measurement for code blocks in Laravel Debugbar

Note

This package was cloned from Amir Irfan's iffifan/laravel-debugbar-memory repo. I made some improvements by cloning because I saw that he did not contribute to the project for a long time. Thank him for publishing this package.

Installation

composer require sustartx/laravel-debugbar-memory --dev

or add composer.json

    "require-dev": {
        "sustartx/laravel-debugbar-memory": "*"
    },
    "extra": {
        "laravel": {
            "dont-discover": [
                "sustartx/laravel-debugbar-memory"
            ]
        }
    },

AppServiceProvider.php

// Debugbar
if (env('DEBUGBAR_ENABLE', false)){
    // $this->app->register(\Barryvdh\Debugbar\ServiceProvider::class);
    $this->app->register(\SuStartX\MemoryDebugbar\Providers\MemoryDebugbarServiceProvider::class);
    // $this->app->alias('Debugbar', \Barryvdh\Debugbar\Facades\Debugbar::class);
}

Usage

After successful installation you should see Memory tab in your Debugbar

Screenshot

Measuring memory usage of a code block

Let's calculate memory usage of a while loop with helper methods

    start_memory_measure('Some Loop');
    $a = 0;
    $b = 'X';
    while ($a < 10000000) {
        $b .= 'X';
        ++$a;
    }
    stop_memory_measure('Some Loop');

Memory calculation will be updated like this:

Screenshot

Disable

Just add

        'memory_details'  => false, //Display memory details

in config/debugbar.php