Это видео недоступно.
Сожалеем об этом.

Javascript Design Patterns #9 - Retry Pattern

Поделиться
HTML-код
  • Опубликовано: 13 янв 2022
  • The retry design pattern enables an application to handle temporary failures when it tries to connect to a service or network resource. It does this by repeatedly retrying a failed operation. By retrying failed connections/requests, we can improve the overall stability of our application.
    📚 Materials/References:
    GitHub Code: github.com/pkellz/devsage/blo...
    "Design Patterns Explained Simply" Ebook: payhip.com/b/MLtJ
    🌎 Find Me Here:
    Twitter: / realdevsage
    Ebooks: payhip.com/devsage
    Discord: / discord
    Merch: cottonbureau.com/people/devsage

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

  • @DevSage
    @DevSage  2 года назад

    🤖 GitHub: github.com/pkellz/devsage/blob/master/DesignPatterns/Retry.js
    📕 "Design Patterns Explained Simply" Ebook: payhip.com/b/MLtJ
    💙 Twitter: twitter.com/realDevSage
    📙 Ebooks: payhip.com/devsage
    💥 Discord: discord.gg/BP8wPv6raA

  • @Shuyinz
    @Shuyinz 3 месяца назад +1

    This pattern is brilliant! Thx for sharing!

  • @rohitkudalkar92
    @rohitkudalkar92 2 года назад +3

    ohh nice this is very useful. love and support

  • @balancenguyen3129
    @balancenguyen3129 Год назад +1

    very nice, thanks a lot bro!

  • @hanimohammedtaher6691
    @hanimohammedtaher6691 Год назад

    Great content!

  • @anouarnouri2111
    @anouarnouri2111 2 года назад +3

    welcome back

  • @vuejs1
    @vuejs1 Год назад

    beautiful

  • @jeffs3809
    @jeffs3809 3 дня назад

    Thank you this is very helpful. I do have one question... How did you get that to run in vscode?

    • @jeffs3809
      @jeffs3809 3 дня назад

      Ah, I just noticed you are using nodemon... I got it thank you. This is VERY helpful. :)

  • @Tiosteel-gs9mx
    @Tiosteel-gs9mx 8 дней назад

    Isn't it just a variation of a Proxy one?

  • @laptop12358
    @laptop12358 2 года назад +1

    nice

  • @ngneerin
    @ngneerin 2 года назад +1

    Exponential backoff with jitter?

    • @DevSage
      @DevSage  2 года назад +1

      I'm not very familiar with jitter but if you mean exponential backoff with a random delay, then yes that's a potential strategy you could use