在阅读 Introducing .NET 5 时读到 "Fast startup, low footprint, and lower memory usage" 这个小标题时产生的疑问,在博问中寻求答案
google翻译:快速启动,占用空间小,内存使用率低。应该是指磁盘吧,如果是指内存,那不和后面的表达重复了。
根据上下文,表示的应该是 内存空间。毕竟startup时,需要把需要的先读到内存中。
大概是说
All this being said, the general (academic) definition of footprint includes all kinds of memory/storage aspects.
在 wikipedia 上找到了答案 application footprint
In computing, footprint of an application software (or application footprint) provides a sense of sizing of its various constituents, and hence, is a spatial measurement, in a given context, such as disk footprint, memory footprint (a.k.a. runtime footprint), network footprint, etc. In each case, footprint of an application excludes data that it may operate on, as part of storage or execution, but essentially includes programs (executable and libraries), configuration files, resources (binary or textual) and other context-specific components that may be considered as part of the software.
我的理解是 footprint 表示一个程序所消耗的特定资源
差不多