The Four Levels of Caching in Next.js

  Рет қаралды 5,516

Ankita Kulkarni

Ankita Kulkarni

Күн бұрын

Пікірлер: 57
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
So what are some burning questions you have about caching? Or Next in general? Comment below and let me know!
@alwazkazi1916
@alwazkazi1916 5 ай бұрын
Can we do this without fetch? I'm using axios.
@nizamuddinbabu5889
@nizamuddinbabu5889 3 ай бұрын
Thank you so much for explaining such a complex topic in such a simple way.
@Kulkarniankita
@Kulkarniankita 3 ай бұрын
Glad you liked it!
@oladimejicoder
@oladimejicoder 6 ай бұрын
Thank you, this has been very helpful
@clevercoder2609
@clevercoder2609 8 ай бұрын
Nice explanation❤
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks!
@kamrant8915
@kamrant8915 7 ай бұрын
Great explanation. Thanks.
@Kulkarniankita
@Kulkarniankita 7 ай бұрын
Glad it was helpful!
@Arindam_1729
@Arindam_1729 5 ай бұрын
Really Great Content Thanks a lot for sharing this
@Kulkarniankita
@Kulkarniankita 5 ай бұрын
Thanks!
@oladimejicoder
@oladimejicoder 6 ай бұрын
Thank you very much Ankita, this is very helpful
@Kulkarniankita
@Kulkarniankita 6 ай бұрын
Glad you found it helpful!
@TriptoAfsin
@TriptoAfsin 8 ай бұрын
Neatly explained Thanks !
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks, glad you like it!
@mrityunjaysinha
@mrityunjaysinha 7 ай бұрын
Thanks to make it simple to understand 😊
@Kulkarniankita
@Kulkarniankita 7 ай бұрын
Thanks! 😊
@yassine9090
@yassine9090 2 ай бұрын
Thank you!
@Kulkarniankita
@Kulkarniankita 2 ай бұрын
Anytime :)
@garikmelqonyan6011
@garikmelqonyan6011 8 ай бұрын
Good job!
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks!
@asfandyar8088
@asfandyar8088 8 ай бұрын
Thanks Mam you explained it very nicely.
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Glad to hear that! Thanks
@carlosterrazas8913
@carlosterrazas8913 6 ай бұрын
When you do a fetching or a prism within a server actions, is it cached?
@Solo_playz
@Solo_playz 5 ай бұрын
You're the only one who cover any of the topic from NextJs deeply 🔥 You're 🫵🏼 channel is like a video repentattion document 👀 of NextJs 👏🏼🎉 Thank you ankita madam ❤
@Kulkarniankita
@Kulkarniankita 5 ай бұрын
Haha thanks! Appreciate it
@JaykrushnaDas-v9q
@JaykrushnaDas-v9q 8 ай бұрын
I learned a couple of new things from this video, Thank you so much for making such content🙏🙏
@Kulkarniankita
@Kulkarniankita 7 ай бұрын
Of course, thank you! 😊
@olg3089
@olg3089 8 ай бұрын
Cool stuff ❤
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks! 😊
@Rajputana1974
@Rajputana1974 6 ай бұрын
Keep growing
@Kulkarniankita
@Kulkarniankita 6 ай бұрын
Thank you!
@sai7743
@sai7743 8 ай бұрын
Hi Ankita do on the loading with template tsx when refresh the page loader to apply and also on page navigation also I am eagerly waiting for this to implement in my project.I like ur way of explanation and I am now ur subscriber
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks!
@pavankarthik699
@pavankarthik699 8 ай бұрын
Hey Ankita, Can you make a video on how to properly and securely make api calls in either React or NextJs which is to be used for production.
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Hey check the data fetching section in the Nextjs crash course on my channel. I show how you can do that!
@pavankarthik699
@pavankarthik699 8 ай бұрын
@@Kulkarniankita Thanks for the reply, My bad I haven't seen the video yet, and kept the tab open to watch it later, But this came to my mind and posted the comment. I have some other doubts as well in frontend development for suggestion, where can I post Ankita?
@hareshlakhwani4721
@hareshlakhwani4721 8 ай бұрын
Great video yesterday only I started learning Next.js but as sr developer I have one big question how does Next.js works under the hood what exactly it’s doing if you can make full in depth video in that would be helpful
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Thanks!
@rohitkochikkatfrancis
@rohitkochikkatfrancis 8 ай бұрын
Hey ankita, i am very much confused with using the USE SERVE and USE CLIENT and mixing and matching RSC with server actions, etc. Could you please make a video to cover all that ?
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
That’s a good point, yeah I’ll consider it!
@MiladJoodi
@MiladJoodi 8 ай бұрын
Thanks a lot ♥
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Of course!
@Beast80K
@Beast80K 7 ай бұрын
*Thanks* alot for this simplified and detailed explanation. Respected Ma'am, What happens when there are 2 users, hiting the API 1st user gets new data, but what happens if 2nd user comes after revalidation period ??
@Kulkarniankita
@Kulkarniankita 7 ай бұрын
First user gets stale data but kicks off a request to get fresh data so that the 2nd user gets fresh data!
@Beast80K
@Beast80K 7 ай бұрын
@@Kulkarniankita Thankyou Ma'am for answering this, but NextJS didn't behave like this. I had an external API which my NextJS route handler calls to get data, but despite external API returning 503, 429, etc. after revalidation period NextJS returns old cached data. I have more details about this question on StackOverflow, search for question *NextJS 14 returns old cached data even if external API returns error on revalidate* to get more details.
@hossainopi
@hossainopi 8 ай бұрын
Any tips for speeding up next.js image loading? Tried various optimizations like sharp, resizing, and quality adjustments but still facing slow loading times despite small image sizes (37kb). Any suggestions?
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Hmm Did you try caching on the CDN?
@pushkarkathayat7893
@pushkarkathayat7893 8 ай бұрын
which soft you use for recording?
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
Hey I’m using Premiere pro!
@sai7743
@sai7743 8 ай бұрын
Here in nextjs we can use only Link tag there is no use of anchor tag in nextjs is it correct
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
You can use anchor tag as Link uses anchor tag under the hood but you won’t get a bunch of capabilities like prefetching etc. if you don’t.
@sai7743
@sai7743 8 ай бұрын
@@Kulkarniankita understood I need a clarity on initially I run nom run dev a white space appearing and displaying the UI so how to handle and pls explain about loaders spin every page routing
@alirezouali3119
@alirezouali3119 2 ай бұрын
Learnt that the hard way lol now I use actions and i'm fine
@Kulkarniankita
@Kulkarniankita 2 ай бұрын
lol I hear you!
@PicchiChannel
@PicchiChannel 8 ай бұрын
@Kulkarniankita
@Kulkarniankita 8 ай бұрын
👋
One Simple Step to Add Page Transitions in NextJS
8:39
Ankita Kulkarni
Рет қаралды 8 М.
You’re leaking data with Server Actions in Next.js (accidentally)
14:54
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
A New Way to Render Pages in Next.js | NeonDB, Server Actions
26:13
Ankita Kulkarni
Рет қаралды 1,2 М.
Next.js App Router Caching: Explained!
25:22
Vercel
Рет қаралды 107 М.
Meet the Creator of TanStack / React Query (Tanner Linsley Interview)
45:34
Supabase + Next.js ULTIMATE Auth Combo
8:55
The Dev Logger
Рет қаралды 9 М.
Learn Zod in 5 minutes (makes TypeScript better)
6:23
Ankita Kulkarni
Рет қаралды 984
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 725 М.
5 NEW Features in Next.js 15 You Should Know About
15:27
Ankita Kulkarni
Рет қаралды 1,3 М.
Dockerize Next.js & Deploy to VPS (EASY!)
19:43
ByteGrad
Рет қаралды 73 М.
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН