┌──────────────┬────────────┬───────────────────────┐
│ Keyword List │ Map/Struct │ HashDict (deprecated) │
┌──────────────────┼──────────────┼────────────┼───────────────────────┤
│ Duplicate keys │ yes │ no │ no │
│ Ordered │ yes │ no │ no │
│ Pattern matching │?yes │?yes │ no │
│ Performance1 │?— │ — │ — │
│ ├ Insert │ very fast2 │ fast3 │?fast? │
│ └ Access │ slow? │ fast3 │ fast? │
└──────────────────┴──────────────┴────────────┴───────────────────────┘
Keyword lists are lightweight and have a simple structure underneath them, which makes them very flexible. You can think of them as syntax sugar on top of an Erlang convention, making it easy to interface with Erlang without writing too ugly code. For example, keyword lists are used to represent function arguments, which is a property inherited from Erlang. In some cases, keyword lists are your only choice, especially if you need duplicate keys or ordering. They simply have different properties than the other alternatives, which make them more suitable for some situations and less for others.
Maps (and Structs) are used to store actual payload data, since they have a hash-based implementation. Keyword lists internally are just lists that need to be traversed for each operation, so they don't have the properties of classic key-value data structures like constant time access.
Elixir also introduced HashDict
as a workaround for the poor performance of maps at the time it was written. However, this is fixed now as of Elixir 1.0.5/Erlang 18.0 and HashDict
will be deprecated in future versions.
If you dig deeper into the Erlang standard library, there are even more data structures that store key/value pairs:
- proplists – similar to Elixir keyword lists
- maps – same as Elixir maps
- dict – key-value dictionaries built from Erlang primitives
- gb_trees – general balanced tree
You also have these options when you need to store key/value pairs across multiple processes and/or VMs:
- ets/dets – (disk based) Erlang term storage
- mnesia – distributed database
1 Generally speaking, but of course it depends?.
2 Best case is just prepending to a list.
3 Applies to Elixir 1.0.5 and above, may be slower in older versions.
? HashDict
is now being deprecated.
? Requires a linear search which on average scans half of the elements.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…