diff --git a/src/glossary/index.md b/src/glossary/index.md index 8e3a4d6675..bdbdeedc2c 100644 --- a/src/glossary/index.md +++ b/src/glossary/index.md @@ -153,10 +153,16 @@ The term *hoisting* is used to describe running a section of code before it is r JavaScript uses hoisting for some constructs, such as `var`, `import` and function declarations. -In a Vue context, the template compiler applies *static hoisting* to improve performance. When converting a template to a render function, VNodes that correspond to static content can be created once and then reused. These static VNodes are described as hoisted because they are created outside the render function, before it runs. A similar form of hoisting is applied to static objects or arrays that are generated by the template compiler. +In a Vue context, the compiler applies *hoisting* to improve performance. When compiling a component, static values are moved out of the component's scope. These static values are described as 'hoisted' because they are created outside the component. + +## cache static {#cache-static} + +The term *cache* is used to describe the temporary storage of frequently accessed data to improve performance. + +The Vue template compiler identifies those static VNodes, caches them during the initial render, and reuses the same VNodes for every subsequent re-render. For more details see: -- [Guide - Rendering Mechanism - Static Hoisting](/guide/extras/rendering-mechanism.html#static-hoisting) +- [Guide - Rendering Mechanism - Cache Static](/guide/extras/rendering-mechanism.html#cache-static) ## in-DOM template {#in-dom-template}