Artwork

The Enjoy the Vue Team에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 The Enjoy the Vue Team 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.
Player FM -팟 캐스트 앱
Player FM 앱으로 오프라인으로 전환하세요!

Episode 78: setTimeout(newEpisode)

33:43
 
공유
 

Manage episode 304870213 series 2610000
The Enjoy the Vue Team에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 The Enjoy the Vue Team 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.

This episode is sponsored by Clouflare Pages!

This week, The Enjoy the Vue panel digs into the topic of asynchronous event loops: how it can save you time, but also how it can trip you up. Asynchronous update queues are an efficient way for platforms like Vue to save time and energy by recognizing a group of similar commands and doing a batch run at the same point in time. We get into event loops, how the term ‘next tick’ came about, and how synchronous stacking can cause a Stack Overflow Error. You’ll also hear some of our favorite terminal commands, including a special tidbit on how to say ‘please’ to your computer! Lastly, we share our picks of the week that will add joy, intrigue, and deliciousness to your life, so make sure you tune in to hear it all!

Key Points From This Episode:

  • Introducing today’s topic: asynchronous event loop in JavaScript.
  • An asynchronous update queue and why Vue uses one.
  • Why an asynchronous update queue is so efficient.
  • How an asynchronous update queue can also sometimes cause problems.
  • Where the term ‘next tick’ originated and how it is applied today.
  • A breakdown of event loops and stack heaps.
  • Tessa shares her understanding of blocking.
  • Why a blocking operation is synchronous.
  • Alex explains what the heap is and how items transition to the stack.
  • Recursive functions and the stack overflow error message.
  • The team shares their favorite terminal commands.
  • Hear our picks for the week, which include gourmet sour gummies, intriguing portraits, and a fascinating new board game!

Tweetables:

“When you make a change to your data in Vue, it doesn't happen right away because that would potentially be inefficient. What it does is it groups all the changes together and then batch runs through them at a set point in time. That's the queue that they all get added to.” — @EnjoyTheVueCast [0:02:04]

“Basically, it's like doing your math without showing the work. That's what Vue does. Teachers love it.” — @EnjoytheVueCast [0:03:20?]

“My understanding is that blocking doesn't mean it never happens. It's just like I'm going to save all of these user interactions until the next time that the queue is free. Then, I'm going to jam all of them in there. You're going to get all 500 clicks in one second.” — @EnjoytheVueCast [0:18:25]

“There is this nebulous event that may or may not happen. When it happens, that click, that event doesn't necessarily fire immediately. It gets put on the end of the event queue, the event loop queue.” — @EnjoytheVueCast [0:19:16]

Links Mentioned in Today’s Episode:

Sponsored By:

Support Enjoy the Vue

  continue reading

93 에피소드

Artwork

Episode 78: setTimeout(newEpisode)

Enjoy the Vue

62 subscribers

published

icon공유
 
Manage episode 304870213 series 2610000
The Enjoy the Vue Team에서 제공하는 콘텐츠입니다. 에피소드, 그래픽, 팟캐스트 설명을 포함한 모든 팟캐스트 콘텐츠는 The Enjoy the Vue Team 또는 해당 팟캐스트 플랫폼 파트너가 직접 업로드하고 제공합니다. 누군가가 귀하의 허락 없이 귀하의 저작물을 사용하고 있다고 생각되는 경우 여기에 설명된 절차를 따르실 수 있습니다 https://ko.player.fm/legal.

This episode is sponsored by Clouflare Pages!

This week, The Enjoy the Vue panel digs into the topic of asynchronous event loops: how it can save you time, but also how it can trip you up. Asynchronous update queues are an efficient way for platforms like Vue to save time and energy by recognizing a group of similar commands and doing a batch run at the same point in time. We get into event loops, how the term ‘next tick’ came about, and how synchronous stacking can cause a Stack Overflow Error. You’ll also hear some of our favorite terminal commands, including a special tidbit on how to say ‘please’ to your computer! Lastly, we share our picks of the week that will add joy, intrigue, and deliciousness to your life, so make sure you tune in to hear it all!

Key Points From This Episode:

  • Introducing today’s topic: asynchronous event loop in JavaScript.
  • An asynchronous update queue and why Vue uses one.
  • Why an asynchronous update queue is so efficient.
  • How an asynchronous update queue can also sometimes cause problems.
  • Where the term ‘next tick’ originated and how it is applied today.
  • A breakdown of event loops and stack heaps.
  • Tessa shares her understanding of blocking.
  • Why a blocking operation is synchronous.
  • Alex explains what the heap is and how items transition to the stack.
  • Recursive functions and the stack overflow error message.
  • The team shares their favorite terminal commands.
  • Hear our picks for the week, which include gourmet sour gummies, intriguing portraits, and a fascinating new board game!

Tweetables:

“When you make a change to your data in Vue, it doesn't happen right away because that would potentially be inefficient. What it does is it groups all the changes together and then batch runs through them at a set point in time. That's the queue that they all get added to.” — @EnjoyTheVueCast [0:02:04]

“Basically, it's like doing your math without showing the work. That's what Vue does. Teachers love it.” — @EnjoytheVueCast [0:03:20?]

“My understanding is that blocking doesn't mean it never happens. It's just like I'm going to save all of these user interactions until the next time that the queue is free. Then, I'm going to jam all of them in there. You're going to get all 500 clicks in one second.” — @EnjoytheVueCast [0:18:25]

“There is this nebulous event that may or may not happen. When it happens, that click, that event doesn't necessarily fire immediately. It gets put on the end of the event queue, the event loop queue.” — @EnjoytheVueCast [0:19:16]

Links Mentioned in Today’s Episode:

Sponsored By:

Support Enjoy the Vue

  continue reading

93 에피소드

모든 에피소드

×
 
Loading …

플레이어 FM에 오신것을 환영합니다!

플레이어 FM은 웹에서 고품질 팟캐스트를 검색하여 지금 바로 즐길 수 있도록 합니다. 최고의 팟캐스트 앱이며 Android, iPhone 및 웹에서도 작동합니다. 장치 간 구독 동기화를 위해 가입하세요.

 

빠른 참조 가이드

탐색하는 동안 이 프로그램을 들어보세요.
재생