Performance of a Script

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Betikci Boris

    Performance of a Script

    I have a question in general, how do you measure performance of your
    script? Without using microtime() function and MS web stress tool?
  • Rik Wasmus

    #2
    Re: Performance of a Script

    On Mon, 18 Feb 2008 19:18:47 +0100, Betikci Boris <pardust@gmail. com>
    wrote:
    I have a question in general, how do you measure performance of your
    script? Without using microtime() function and MS web stress tool?
    Personally, either with apache's ab or xdebug's profiling output.

    --
    Rik Wasmus

    Comment

    • The Natural Philosopher

      #3
      Re: Performance of a Script

      Betikci Boris wrote:
      I have a question in general, how do you measure performance of your
      script? Without using microtime() function and MS web stress tool?
      Genrally, if it runs and does what I want in under a second, I rate it
      as a goer.

      Comment

      • Rik Wasmus

        #4
        Re: Performance of a Script

        On Tue, 19 Feb 2008 00:04:04 +0100, The Natural Philosopher <a@b.cwrote:
        Betikci Boris wrote:
        >I have a question in general, how do you measure performance of your
        >script? Without using microtime() function and MS web stress tool?
        Genrally, if it runs and does what I want in under a second, I rate it
        as a goer.
        Well, a second could be rather much, depending on what you want. A single
        HTML page costing a second to be produced on a developer machine, which
        usually isn't doing that much else, might cost you a lot of headaches on a
        busy production system. It all depends on the resources required and
        available offcourse.
        --
        Rik Wasmus

        Comment

        Working...