Virtual DOM(虚拟DOM) 就是由普通的 JS 对象来描述DOM对象,因为不是真实的DOM对象,所以叫 Virtual DOM。 虚拟DOM就是使用一个虚拟的 DOM 树来描述真实的 DOM 树结构和节点属性,通过比较新旧两颗虚拟 DOM 树的差异&…
1 前言
在上一篇文章中,我们在优化join查询的时候使用到了临时表。当时,我们是这么用的:
create temporary table temp_t like t1;
alter table temp_t add index(b);
insert into temp_t select * from t2 where b>1 and b<2000;
se…