Coding Shorts: Running Async Jobs in ASP.NET Core

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024

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

  • @heavypeki
    @heavypeki 4 месяца назад +4

    Like as always, concise and straight to the point. You are amazing Shawn. Keep it up.

  • @sh00termacg
    @sh00termacg 4 месяца назад

    Awesome thanks a lot Shawn! Love how concise you are.

  • @adamoneil7435
    @adamoneil7435 4 месяца назад

    really cool! I knew Quartz was a thing, but had never seen a demo until now. Love it!

  • @palpie
    @palpie 4 месяца назад

    It was just a small part of this, but you should use ILogger as it is meant to, without string interpolation.

    • @swildermuth
      @swildermuth  4 месяца назад

      So we should avoid $""? Why?

  • @Radddan
    @Radddan 4 месяца назад

    Hey Shawn, can you make a general c# video on streams?

  • @PankajNikam
    @PankajNikam 4 месяца назад

    Thanks for this video :)

  • @nirajchandrajoshi
    @nirajchandrajoshi 4 месяца назад

    Great video
    I have one query - can I run a stored proc on crown schedule where that sproc took 20 minutes to complete. And What happen if IIS pool recycles in between while this job is running do I need to reschedule or quartz will take care of this. Please reply.

    • @swildermuth
      @swildermuth  4 месяца назад

      Look at quartz's durable jobs. Though in the case of a store proc, I might kick it off, not hold a connection the entire time.

    • @nirajchandrajoshi
      @nirajchandrajoshi 4 месяца назад

      @@swildermuth Thank you very much

  • @davood7497
    @davood7497 4 месяца назад +1

    Coolio !!! 💯💯💯💯💯

  • @alfonsdeda8912
    @alfonsdeda8912 4 месяца назад

    Hi, great video!
    What are the advantages over hangfire?

    • @swildermuth
      @swildermuth  4 месяца назад +1

      Hangfile requires data storage - there is no non-durable jobs. That's all.

  • @PelFox
    @PelFox 4 месяца назад

    How does it keep state if your app crashes / restarts? Can you store the jobs in a queue or database?

    • @swildermuth
      @swildermuth  4 месяца назад +3

      You can configure it to store in state (look for Durable and StoreDurably)

  • @juanfernandofernandez2730
    @juanfernandofernandez2730 4 месяца назад

    First comment