erlang 各种数据类型占用的内存大小

用erlang的话讲,深入了解erlang不同数据类型所占的内存空间大小,是erlang高效编程的一个良好开始。

一个程序要运行,就要先描述其算法。描述一个算法应先说明算法中要用的数据,数据以变量或常量的形式来描述。每个变量或常量都有数据类型。

很多人都以为要把算法写得多精湛,才算高效编程,其实不然,细微处见功夫。

以下内容展示了erlang各种数据类型占用的内存大小。

Memory

Data TypeMemory Size
Small integer1 word.
On 32-bit architectures: -134217729 < i < 134217728 (28 bits).
On 64-bit architectures: -576460752303423489 < i < 576460752303423488 (60 bits).
Large integer3..N words.
Atom1 word.
An atom refers into an atom table, which also consumes memory. The atom text is stored once for each unique atom in this table. The atom table is not garbage-collected.
FloatOn 32-bit architectures: 4 words.
On 64-bit architectures: 3 words.
Binary3..6 words + data (can be shared).
List1 word + 1 word per element + the size of each element.
String (is the same as a list of integers)1 word + 2 words per character.
Tuple2 words + the size of each element.
Small Map5 words + the size of all keys and values.
Large Map (> 32 keys)N x F words + the size of all keys and values.
N is the number of keys in the Map.
F is a sparsity factor that can vary between 1.6 and 1.8 due to the probabilistic nature of the internal HAMT data structure.
Pid1 word for a process identifier from the current local node + 5 words for a process identifier from another node.
A process identifier refers into a process table and a node table, which also consumes memory.
Port1 word for a port identifier from the current local node + 5 words for a port identifier from another node.
A port identifier refers into a port table and a node table, which also consumes memory.
ReferenceOn 32-bit architectures: 5 words for a reference from the current local node + 7 words for a reference from another node.
On 64-bit architectures: 4 words for a reference from the current local node + 6 words for a reference from another node.
A reference refers into a node table, which also consumes memory.
Fun9..13 words + the size of environment.
A fun refers into a fun table, which also consumes memory.
Ets tableInitially 768 words + the size of each element (6 words + the size of Erlang data). The table grows when necessary.
Erlang process338 words when spawned, including a heap of 233 words.

System Limits

The Erlang language specification puts no limits on the number of processes, length of atoms, and so on. However, for performance and memory saving reasons, there will always be limits in a practical implementation of the Erlang language and execution environment.

ProcessesThe maximum number of simultaneously alive Erlang processes is by default 262,144. This limit can be configured at startup. For more information, see the +P command-line flag in theerl(1) manual page in ERTS.
Known nodesA remote node Y must be known to node X if there exists any pids, ports, references, or funs (Erlang data types) from Y on X, or if X and Y are connected. The maximum number of remote nodes simultaneously/ever known to a node is limited by the maximum number of atomsavailable for node names. All data concerning remote nodes, except for the node name atom, are garbage-collected.
Connected nodesThe maximum number of simultaneously connected nodes is limited by either the maximum number of simultaneously known remote nodes, the maximum number of (Erlang) portsavailable, or the maximum number of sockets available.
Characters in an atom255.
AtomsBy default, the maximum number of atoms is 1,048,576. This limit can be raised or lowered using the +t option.
Elements in a tupleThe maximum number of elements in a tuple is 16,777,215 (24-bit unsigned integer).
Size of binaryIn the 32-bit implementation of Erlang, 536,870,911 bytes is the largest binary that can be constructed or matched using the bit syntax. In the 64-bit implementation, the maximum size is 2,305,843,009,213,693,951 bytes. If the limit is exceeded, bit syntax construction fails with asystem_limit exception, while any attempt to match a binary that is too large fails. This limit is enforced starting in R11B-4.
In earlier Erlang/OTP releases, operations on too large binaries in general either fail or give incorrect results. In future releases, other operations that create binaries (such aslist_to_binary/1) will probably also enforce the same limit.
Total amount of data allocated by an Erlang nodeThe Erlang runtime system can use the complete 32-bit (or 64-bit) address space, but the operating system often limits a single process to use less than that.
Length of a node nameAn Erlang node name has the form host@shortname or host@longname. The node name is used as an atom within the system, so the maximum size of 255 holds also for the node name.
Open portsThe maximum number of simultaneously open Erlang ports is often by default 16,384. This limit can be configured at startup. For more information, see the +Q command-line flag in theerl(1) manual page in ERTS.
Open files and socketsThe maximum number of simultaneously open files and sockets depends on the maximum number of Erlang ports available, as well as on operating system-specific settings and limits.
Number of arguments to a function or fun255
Unique References on a Runtime System InstanceEach scheduler thread has its own set of references, and all other threads have a shared set of references. Each set of references consist of 2⁶⁴ - 1 unique references. That is, the total amount of unique references that can be produced on a runtime system instance is (NoSchedulers + 1) × (2⁶⁴ - 1). 

If a scheduler thread create a new reference each nano second, references will at earliest be reused after more than 584 years. That is, for the foreseeable future they are unique enough.
Unique Integers on a Runtime System InstanceThere are two types of unique integers both created using the erlang:unique_integer()BIF: 

1. Unique integers created with the monotonic modifier consist of a set of 2⁶⁴ - 1 unique integers. 

2. Unique integers created without the monotonic modifier consist of a set of 2⁶⁴ - 1 unique integers per scheduler thread and a set of 2⁶⁴ - 1 unique integers shared by other threads. That is, the total amount of unique integers without the monotonic modifier is (NoSchedulers + 1) × (2⁶⁴ - 1). 

If a unique integer is created each nano second, unique integers will at earliest be reused after more than 584 years. That is, for the foreseeable future they are unique enough.

那么,一个word占多大的空间?

1> erlang:system_info(wordsize).
8
通常情况下,32位系统占4字节,64位系统占8字节。

参考:http://blog.csdn.net/mycwq/article/details/16893209
--------------------- 
作者:没有开花的树 
来源:CSDN 
原文:https://blog.csdn.net/mycwq/article/details/16893209?utm_source=copy 
版权声明:本文为博主原创文章,转载请附上博文链接!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值