• I’m surprised that no-one has written one yet, unless I just can’t find it.

    I’m looking for a memory profiling plugin for WP that will give peak memory use for the site, individual plugins, etc. to see where the hogs are. I do run a lot of plugins, but I’ve had to push my memory_limit up to 64M which seems a bit excessive.

    Any thoughts, ideas, suggestions gratefully received.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gfindlay

    (@gfindlay)

    No-one?

    So no-one is interested in finding out how much memory their site is using/wasting? That’s a surprise.

    jbauguss

    (@jbauguss)

    Here. create a plugin with this content.

    <?php
    /*
    Plugin Name: Mem Usage
    */

    function mem_init() {
    $GLOBALS[“memused”] = “
    memory usage after wordpress init: ” . memory_get_usage() . ” Bytes
    “;
    }

    function mem_foot() {
    echo $GLOBALS[“memused”];
    echo “
    memory usage after wordpress is done: ” . memory_get_usage() . ” Bytes
    “;
    print_r($GLOBALS);
    }

    add_action(“init”, “mem_init”);
    add_action(“wp_footer”, “mem_foot”);
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Memory profiling’ is closed to new replies.