Golang Live | The Art of Performance: Profiling & Benchmarking in Go

Поделиться
HTML-код
  • Опубликовано: 3 сен 2023
  • In this episode, Graeme King hosts Alexander Begoon to explain the concept of benchmarking and profiling in software development.
    We'll also discuss the reasons for benchmarking/profiling, such as identifying performance bottlenecks, memory leaks, and CPU-intensive operations.
    Check out the how you can get involved in our channel here www.amicusjobs.com/community
    Amicus Recruitment help businesses connect with the best Software Engineering, Cloud & DevOps and ERP professionals across UK, US & Europe.
    We partner with some of the top global brands providing both contract and permanent recruitment solutions when they need us the most.
    We are passionate about the tech community and are committed to help drive exposure to these technologies by writing blogs, sharing content, arranging meetups & working on some of the absolute best requirements on the market.
    Within every great tech business, are amazingly talented people. Our passion is to connect these people to the organisations who produce some of the best tech products in the world.
    🤳🏼 Stay connected!
    Website 👉 www.amicusjobs.com/
  • НаукаНаука

Комментарии • 1

  • @nagygr
    @nagygr 6 месяцев назад +2

    Great presentation. The problem with empty prof file was that deferred functions are called in the opposite order that they appear in the code because they are pushed onto the stack. The file should be closed but the deferred close should come before the stopping of the profiler.