Erlang虽然变量不可变,但实际上为了节省内存,还是存在Term Sharing数据项共享的。但以下情况时会使共享实效,摘抄自文档。
Shared subterms are not preserved in the following cases:
- When a term is sent to another process
- When a term is passed as the initial process arguments in the spawn call
- When a term is stored in an Ets table
关注内存,自然就会想计算出term在内存中的实际大小,而erlang也提供了相应的方法供我们使用。
erts_debug:size/1
和 erts_debug:flat_size/1
都是不在正式文档中的函数, 可以用来计算erlang数据项在内存中所需要空间。这两个函数区别在于, 在具有共享内存的数据结构中, erts_debug:size/
1只计算一次共享的数据大小, 而erts_debug:flat_size/1
则会重复计算
有说明每种term大小的计算方法。这个项目有提供计算出term在内存的大小,是会计算出binary实际占用的部分。不管binary是大于64K时的refc binary,还是在heap上分配那部分。
,介绍了因term数据展开后,因sharing失效导致的一些陷阱。