lets say at the time of login we generate access-token and refresh-token and store the refresh-token of a particular user to DB. the expiry time of access-token will be like 2min and refresh-token will be about 1 year. so after 2 min it will call the refresh api so it deletes the saved refresh-token and generates the new token and save it in db. for more securty we can restrict the session limit to 1 logged in user.
@sricharankonga297021 сағат бұрын
Great content. Please make a video on Kafka
@ashwinmadhu721821 сағат бұрын
Please next class on Kafka
@techcrunch-x4v22 сағат бұрын
Thanks Sanchit, very Informative. Any plans to add Multithreading, Kafka, Zookeeper to your list?
@terrormapuКүн бұрын
cli is GUI kind of thing?..only experts can understand..
@terrormapuКүн бұрын
ur content is good but why harp on 10 years exp..and esp. speak down juniors..if ur content is better people will understand at some point..dont be desperate..
@Its.abhi..Күн бұрын
@@terrormapu to justify that people can trust him instead of others who shows fake faang dreams with nill experience.
@a_dev6696Күн бұрын
I think i found a gem ❤
@rammohanreddy2280Күн бұрын
Well explained. Please make a similar video on Kafka
@technoishan24162 күн бұрын
sir please provide the link of project so that we cam get the more deeep overview very good video for java developer
@CodeWithSunchitDudeja19 сағат бұрын
Here we go github.com/Sunchit/RedisSpringBootMicroservice
@indianengineer58022 күн бұрын
I think your way of explaining the spring boot code is really good, I found it unique
@subhadeeppattanayak52302 күн бұрын
I was exploring here and there to learn the caching concepts, until I found it here. Truely this is a amazing video.
@preethamhd36132 күн бұрын
perfect!!!
@2192_RAHULPATIL2 күн бұрын
Could you please have some video around reactive programming This redis tutorial is awesome🎉
@ianuj42312 күн бұрын
SIR thank you for this 🙏🏻. if i'm not asking for too much can i ask you 2 things : if possible can you implement pub sub along with redis. can you dockerize and also deploy that spring boot application that contains redis and pub sub
@srinivasaraolakkoji38332 күн бұрын
😍
@palaceofgains77822 күн бұрын
I would definitely buy your course
@roshanjadhav772 күн бұрын
i think record introduce in java 14 bro
@sambhavmishra54232 күн бұрын
I have been following you on LinkedIn for a long time, can you bring a project involving redis, kafka, k8s for fresh grads?
@darsisriguruaakash3 күн бұрын
Hey Sanchit Can you share the github link Unable to find. Thanks in advance
@CodeWithSunchitDudeja12 сағат бұрын
Code link : github.com/Sunchit/RedisSpringBootMicroservice
@rsKayiira3 күн бұрын
Excellent explanation thank you
@Maheshn-g9s3 күн бұрын
Awesome, really ! Can you make videos on Kafka and ElasticSearch on realtime api's and how will they apply on industry standards in financial services, e-commerce applications etc. Because Kafka is really big and not getting efficient resources. Kindly make interesting videos on it.
@nikhiltiwari203 күн бұрын
Great video. Can you make 1 spring boot backend series where you create backend of jiocinema or swiggy something like this by using all spring boot,aws, docker,kubernetes and kafka and other services with their use and hld and lld
@Harjotse3 күн бұрын
Sir why not spring boot most of the students don't even know spring boot if few of them knows then its incomplete knowledge only it will be really great if you can provide spring boot tutorials
@varunpalsingh38223 күн бұрын
thank you sir
@CodeWithSunchitDudeja3 күн бұрын
Most welcome
@mptapasdas3 күн бұрын
Loved it man. Requesting you to touch upon topics like Kafka and Elasticsearch.
@CodeWithSunchitDudeja3 күн бұрын
Great idea! I'll add it to my list.
@naveensa92953 күн бұрын
This is the best explanation with design on Oauth2 I came across youtube. Can you please make a video on login with jwt and oauth2. Where the user can login with the username and password or he can just login with Google.
@kirankondawar65113 күн бұрын
Best video found about redis 👌 @sunchit Thanks
@anthonya8803 күн бұрын
Bro you are knowledgeable. please make a proper system design course with full length videos. If job market improves you may get traffic to your channel.
@manishv39923 күн бұрын
Awesome, please make more videos like this on Kafka etc
@CodeWithSunchitDudeja3 күн бұрын
I will try my best
@priyeshraj59103 күн бұрын
Yeah please make a playlist on Kafka and RabitMQ@@CodeWithSunchitDudeja
@unnatitripathi54265 күн бұрын
nice explanation with such a charming voice..💫
@CodeWithSunchitDudeja3 күн бұрын
Thanks, I try to keep things engaging! 🎙️
@engineer95037 күн бұрын
sir your videos are amazing but i think if you will create a new channel and upload vides then reach will be higher because i think its yt algorithm your channel's reach is much lower because of the frequency of your videos may be i am wrong but this is what i think, and your content is next level!!
@harshrawat5038 күн бұрын
very nice soln
@techcrunch-x4v8 күн бұрын
Why is there a POST request sent from client side to Auth server to get the access token? Shouldn't it be GET since we are requesting the access token?
@CodeWithSunchitDudeja8 күн бұрын
In the auth workflow, a POST request is used to get an access token because: Secure Data Transmission: Credentials and sensitive data are sent in the body, not the URL, keeping them safer. OAuth 2.0 Standards: The protocol specifies using POST for token requests. Data Handling: POST supports larger and more complex data structures, unlike GET. Server-Side Processing: POST better handles non-idempotent actions, such as token generation.
@bhaskarsharan42808 күн бұрын
Thanks for this explanation. This is a detailed video but what it lacks is a pictorial illustration, I feel that the demo you showed by generating token is useful but it may confuse viewers. It would be better if you add a simple diagrams using boxes, show all 8-10 steps and then move to this token generation demo followed by code.
@Vedic_Fit8 күн бұрын
bruh u r just awesome, I've searched everyone's vdo but no where understood, but here i get to learn a lot! TQ bhaiya
@CodeWithSunchitDudeja8 күн бұрын
🙏 Made my day.
@Vedic_Fit8 күн бұрын
@CodeWithSunchitDudeja bhaiya, is it (spring security) same for springboot without micro services?, (if I am only using it for back-end and for frontend I'm using react), Actually I previously coded backend with Express JS (node), there JWT is damn easy, but heere we've to go with lots of classes and implementing those interfaces just to authenticate the user. Is there any shorter way?
@CodeWithSunchitDudeja8 күн бұрын
@@Vedic_Fit Java is a bit elaborate and detailed when compared with JS!
@updates84559 күн бұрын
bss code likh ke bhaag gya\
@rsKayiira11 күн бұрын
Excellent explanation
@surajkumarsingh485711 күн бұрын
Parent's Love
@kalyanisatya402711 күн бұрын
@coding Decoded: can you please make video on 466. Count The Repetitions
@ShaheenSultana-f2y12 күн бұрын
Hello Sanchit, could you share the link to the doc? It would be really helpful! Many Thanks
@luckygupta6613 күн бұрын
Thanks for detailed explanation. Its really helped me to get the proper concept. Please keep it up.
@CodeWithSunchitDudeja11 күн бұрын
Glad to hear that
@mptapasdas14 күн бұрын
That was some nice insight
@iamnoob759314 күн бұрын
Thank you , Understood , Was observation + little math + DFS question.
@mptapasdas14 күн бұрын
Helps a lot. Thanks
@GodRahlzio15 күн бұрын
Correction: Introduced in version 15 not 17
@CodeWithSunchitDudeja14 күн бұрын
thanks for sharing!
@walky415816 күн бұрын
Excellent explanation! My bit manipulation is totally weak and I'm now starting my journey to learn it inside out. This problem was today's daily problem (7th Nov 2024) and learning this approach really gave me a lot of cool insights over the concept! I'll now quickly devise the logic on my own as a practice, and code it individually without referring anywhere. Thankyou so much man! (I'm too late Ik lol)
@CodeWithSunchitDudeja14 күн бұрын
Glad the video was helpful!
@vivekchincholi852616 күн бұрын
very helpful
@CodeWithSunchitDudeja14 күн бұрын
Glad it was helpful!
@AkshatRamanathan17 күн бұрын
Love the passion. Love this form of teaching. Hats off 🎉
@CodeWithSunchitDudeja14 күн бұрын
Cheers 🍻
@deeproy271917 күн бұрын
Thanks. It helps
@CodeWithSunchitDudeja14 күн бұрын
You're welcome!
@syedbashashaik59117 күн бұрын
i have never liked any of the videos on youtube, no matter how good or bad they are. But idk why when ever i see sunchit teaching something, everything comes out of my heart and i emotionally get involved into it. such a great guy to teach. i would say BEST IN THE BUSINESS.
@CodeWithSunchitDudeja14 күн бұрын
Made my day, buddy. Thanks for lot. Glad I could help!😇😇😇
@purushothamanr.bemechanica328817 күн бұрын
hello sir code link is not in the description , how can I get that code ?