文章目录
- 字典意思
- 各类资源的组合,结合成整体
- ip/tcp
- openstack
- cpu
- 内存,栈内存
字典意思
stack
*[stæk]
n. 堆叠, 堆, 大量, 书库, 枪架, 烟囱, 堆积, 存贮栈
vt. 堆积, 堆满, 暗中对…做手脚
vi. 堆起
【计】 堆积, 堆栈
【化】 烟囱
相关词组:
blow one’s stack
stack up
各类资源的组合,结合成整体
ip/tcp
有名的比如IP/TCP协议栈。
openstack
https://docs.openstack.org/newton/user-guide/cli-create-and-manage-stacks.html
These flexible template languages enable application developers to describe and automate the deployment of infrastructure, services, and applications. The templates enable creation of most OpenStack resource types, such as instances, floating IP addresses, volumes, security groups, and users. The resources, once created, are referred to as stacks
就是一组资源,可以合成一个虚拟机的所有资源的组合,或者资源的合理堆积,形成一个新的整体产品。
cpu
《A Performance Counter Architecture for Computing Accurate CPI Components》
Cycles per Instruction (CPI) stacks break down processor execution time into a baseline CPI plus a number of miss event CPI components.
这里的stack也是,组成CPI栈,指令分析的一套方法。将处理器的执行时间分为,基础CPI时间,加上错过CPI事件的一些时间。miss event: cache misses, TLB misses, and branch mispredictions
内存,栈内存
主要关注的是所谓的先进后出意识。