in reply to Re^3: Convert time in seconds to hh::mm::ss
in thread Convert time in seconds to hh::mm::ss

- What exactly is the issue here?

This is part of a web app where I call an external API and get back a few hundred results and have to do quite a few conversions. I can't speed up the API call so am looking to improve speed anywhere I can. Just thought this might be a likely candidate.
  • Comment on Re^4: Convert time in seconds to hh::mm::ss

Replies are listed 'Best First'.
Re^5: Convert time in seconds to hh::mm::ss
by dsheroh (Monsignor) on Mar 16, 2016 at 09:02 UTC
    This is part of a web app where I call an external API
    Whoa, whoa, whoa... Stop right there!

    Third rule of Optimization Club:
    If your app is running faster than the underlying transport protocol, the optimization is over.

    Networks are slow. CPUs are fast. Each API call is easily taking tens of thousands, if not millions, of times longer than your seconds-to-hh:mm:ss conversion routine. Even if you could optimize that conversion down so that a hundred calls take absolutely no time at all, it still wouldn't make a perceptible dent in the overall speed.