38. Java VirtualThreads vs Normal Threads || ThreadLocal in Java

Поділитися
Вставка
  • Опубліковано 8 чер 2024
  • ➡️ Notes link: Shared in the Member Community Post (If you are Member of this channel, then pls check the Member community post, i have shared the Notes link there)
    ➡️ Join this channel to get access to member only perks:
    / @conceptandcoding
    Chapters:
    00:00 - ThreadLocal
    10:13 - Virtual Thread vs Platform Thread
    #java #softwareengineer

КОМЕНТАРІ • 36

  • @harshilgupta9225
    @harshilgupta9225 4 місяці тому +7

    Finally Completed the series 🎉, respect++

  • @user-gt8nx9fv3g
    @user-gt8nx9fv3g 5 місяців тому +2

    correct me if am wrong . Seems Java providing virtual threads only where we are using with executors and Thread class but most of our cases running with Rest full services what if
    First Service Request took 5 mins(/findEmployee)
    Second Service Request took 2 mins(/findEmployee)
    whether these threads as well will detach with OS threads ?

  • @sayeedanawar
    @sayeedanawar 4 місяці тому +2

    Until spring boot playlist starts please suggest some resource for spring boot.

  • @shanu9001
    @shanu9001 5 місяців тому +4

    Sir can you please start springBoot playlist?

  • @lakshya209
    @lakshya209 4 місяці тому +2

    Hey Sir! First off would wish to share my gratitude for making such content.
    Question - Have you made all the videos public or we will need to buy the subscription to view all of them?

    • @ConceptandCoding
      @ConceptandCoding  4 місяці тому

      all videos are available to channel members only buddy

    • @lakshya209
      @lakshya209 4 місяці тому

      Thank you for reaching out :)

  • @ashishchoksi8501
    @ashishchoksi8501 4 місяці тому +1

    will there be any OAuth implementation video in spring-boot series? spring-security

  • @JatinKumar762
    @JatinKumar762 2 дні тому

    Hi @Shrayansh,
    Is all your videos available in your java udemy course also including member only?

  • @user-zt8sb6et9n
    @user-zt8sb6et9n 5 місяців тому +3

    When you will start spring boot

  • @sanjay-tj5ko
    @sanjay-tj5ko 2 місяці тому

    Hi @Shreyansh, can you please make one more hands-on video on Stream

  • @poonamchandsahu9351
    @poonamchandsahu9351 4 місяці тому +1

    Hi Shrayansh, Please make videos on Java9-11 features.

  • @arindamghosh5438
    @arindamghosh5438 3 місяці тому +1

    Plz make a video on countDown latch and cyclic barrier for interviews

    • @ConceptandCoding
      @ConceptandCoding  3 місяці тому +1

      noted

    • @nitishchaudhary7777
      @nitishchaudhary7777 2 місяці тому +1

      @@ConceptandCoding I requested you to make video for latch barrier. It seems like you haven't covered last topics of thread as you mentioned in road map of thread. It's my suggestion/request to you please complete your all related topics for specific things(like thread, collection etc.) after that creating playing list for other topics like Spring boot etc. I appreciated your efforts to make good content and i really liked it. Thanks you!!

  • @srisaiharshithay3842
    @srisaiharshithay3842 3 місяці тому +1

    Sir if possible could u please cover file handling concept in java

  • @whitykhan-ny3oi
    @whitykhan-ny3oi 5 місяців тому +1

    Does these 39 video in public is completed or any private list bcoz im going to start sir pls sir

  • @nishantkumar6116
    @nishantkumar6116 4 місяці тому

    How we can get to know how many threads we can create for an application. On what basis it is decided

    • @ConceptandCoding
      @ConceptandCoding  4 місяці тому +1

      i think you missed the thread pool executor video, i have shared this in depth

  • @chandankumartandi3842
    @chandankumartandi3842 5 місяців тому +1

    I think java playlist is over, when spring boot and unit testing series will come ?

  • @prashantpundir7448
    @prashantpundir7448 5 місяців тому +1

    Hii Sir, how many videos are remaining for Java

  • @MaxTechKnowledge
    @MaxTechKnowledge 3 місяці тому +1

    Isn't threadLocal variable is same as atomic variable ?

  • @aakankashasharma1007
    @aakankashasharma1007 3 дні тому

    when the virtual thread gets detached from the os thread, where is the thread's current state stored?

    • @ConceptandCoding
      @ConceptandCoding  2 дні тому

      When a virtual thread in Java is detached from an OS thread, its current state (such as stack frames and local variables) is stored in the heap memory. This allows the virtual thread to be reattached to any available OS thread later for continued execution.