Node.js Background Jobs: Async Processing for Async Language

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ม.ค. 2025

ความคิดเห็น • 24

  • @dipakchavda5763
    @dipakchavda5763 7 ปีที่แล้ว +1

    Such a nice video and nice speaker.

  • @mahesh73340
    @mahesh73340 7 ปีที่แล้ว +1

    nicely done. loved it.

  • @SamKhan-kb3kg
    @SamKhan-kb3kg 8 ปีที่แล้ว +6

    Hi, can you please share the link to the Github repo? Thanks!

    • @StephenBlum
      @StephenBlum 8 ปีที่แล้ว +1

      I would but this was so long ago.

    • @SamKhan-kb3kg
      @SamKhan-kb3kg 8 ปีที่แล้ว +12

      Thanks but I found it on github. Here is the link: github.com/evantahler/background_jobs_node

    • @StephenBlum
      @StephenBlum 8 ปีที่แล้ว +1

      deluxe!

  • @AdityaFingerstyle
    @AdityaFingerstyle 6 ปีที่แล้ว +1

    Loved it !!

  • @dappinstitute
    @dappinstitute 2 ปีที่แล้ว

    Very nice indeed!

  • @TechPuzzle_Haven
    @TechPuzzle_Haven 4 ปีที่แล้ว

    Great video.👍👍

  • @mattscheurich1037
    @mattscheurich1037 7 ปีที่แล้ว +2

    pegged = maxed out

  • @cryptonative
    @cryptonative 5 ปีที่แล้ว +4

    12 people are using .Net

    • @fadelibrahim7663
      @fadelibrahim7663 2 ปีที่แล้ว

      and before any smartass mention it, i know dislikes doesnt show up anymore

  • @hiteshmeena3091
    @hiteshmeena3091 4 ปีที่แล้ว +1

    he used 5000 || process.env.port which is kind of useless

    • @rohitmalik9843
      @rohitmalik9843 4 ปีที่แล้ว +1

      care to elaborate please, why is that useless?

    • @hiteshmeena3091
      @hiteshmeena3091 4 ปีที่แล้ว +1

      @@rohitmalik9843 OR statement will check left side first if it is true than it does not check right side
      Here 5000 is considered as true always hence process.env.port will not run.
      You will always use process.env.port at the left side if it is available it will be assigned first

    • @rohitmalik9843
      @rohitmalik9843 4 ปีที่แล้ว +1

      @@hiteshmeena3091 yeah but in production, 5000 would not be considered as valid, it would be automatically provided by hosting provider, so it leaves 5000 and jumps over process.env.port. correct me if i'm wrong!!

    • @hiteshmeena3091
      @hiteshmeena3091 4 ปีที่แล้ว +1

      @@rohitmalik9843
      I have checked it many times.
      5000 port will always be assigned if it is written this way. No matter in which environment you run it

    • @rohitmalik9843
      @rohitmalik9843 4 ปีที่แล้ว

      @@hiteshmeena3091 oh ok ok got it... thanks for the update brother :)

  • @musoschool8770
    @musoschool8770 5 ปีที่แล้ว +1

    Python 3 has concurrency with asyncio.... Python is the best!

    • @sumanth3036
      @sumanth3036 5 ปีที่แล้ว +2

      god bless u. Node is super power

    • @vkray
      @vkray 5 ปีที่แล้ว

      Sumanth Vish Lol. USA is a super power.

    • @sujeetagrahari2292
      @sujeetagrahari2292 5 ปีที่แล้ว

      Python interpreter is written in C, V8 in C++ and libuv also in C++. C++ extends C, guess what?