Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A lot of times people use symbols as keys in a Ruby hash.

What's the advantage over using a string?

E.g.:

hash[:name]

vs.

hash['name']
share|improve this question

3 Answers

up vote 48 down vote accepted

Short answer:

Using symbols not only saves time when doing comparisons, but also saves memory, because they are only stored once.

Symbols in Ruby are basically "immutable strings" .. that means that they can not be changed, and it implies that the same symbol when referenced many times throughout your source code, is always stored as the same entity, e.g. has the same object id.

Strings on the other hand are mutable, they can be changed anytime. This implies that Ruby needs to store each string you mention throughout your source code in it's separate entity, e.g. if you have a string "name" multiple times mentioned in your source code, Ruby needs to store these all in separate String objects, because they might change later on (that's the nature of a Ruby string).

If you use a string as a Hash key, Ruby needs to evaluate the string and look at it's contents (and compute a hash function on that) and compare the result against the (hashed) values of the keys which are already stored in the Hash.

If you use a symbol as a Hash key, it's implicit that it's immutable, so Ruby can basically just do a comparison of the (hash function of the) object-id against the (hashed) object-ids of keys which are already stored in the Hash. (much faster)

Notes:

If you do string comparisons, Ruby can compare symbols just by their object ids, without having to evaluate them. That's much faster than comparing strings, which need to be evaluated.

If you access a hash, Ruby always applies a hash-function to compute a "hash-key" from whatever key you use. You can imagine something like an MD5-hash. And then Ruby compares those "hashed keys" against each other.

Long answer:

http://www.robertsosinski.com/2009/01/11/the-difference-between-ruby-symbols-and-strings/

http://www.randomhacks.net/articles/2007/01/20/13-ways-of-looking-at-a-ruby-symbol

share|improve this answer

The reason is efficiency, with multiple gains over a String:

  1. Symbols are immutable, so the question "what happens if the key changes?" doesn't need to be asked.
  2. Strings are duplicated in your code and will typically take more space in memory.
  3. Hash lookups must compute the hash of the keys to compare them. This is O(n) for Strings and constant for Symbols.

Moreover, Ruby 1.9 introduced a simplified syntax just for hash with symbols keys (e.g. h.merge(foo: 42, bar: 6)), and Ruby 2.0 has keyword arguments that work only for symbol keys.

Notes:

1) You might be surprised to learn that Ruby treats String keys differently than any other type. Indeed:

s = "foo"
h = {}
h[s] = "bar"
s.upcase!
h.rehash   # must be called whenever a key changes!
h[s]   # => nil, not "bar"
h.keys
h.keys.first.upcase!  # => TypeError: can't modify frozen string

For string keys only, Ruby will use a frozen copy instead of the object itself.

2) The letters "b", "a", and "r" are stored only once for all occurrences of :bar in a program. On the other hand, it might not be the best idea to constantly create new Symbols that will never be reused, as these will remain in the global Symbol lookup table.

3) Actually, computing the hash for a Symbol didn't take any time in Ruby 1.8.x, as the object is was used directly:

:bar.object_id == :bar.hash # => true in Ruby 1.8.7

In Ruby 1.9.x, this has changed as hashes change from one session to another (including those of Symbols):

:bar.hash # => some number that will be different next time Ruby 1.9 is ran
share|improve this answer
+1 for your excellent notes! I originally didn't mention the hash function in my answer, because I tried to make it easier to read :) – Tilo Nov 18 '11 at 22:04
@Tilo: indeed, that's why I wrote my answer :-) I just edited my answer to mention the special syntax in Ruby 1.9 and the promised named parameters of Ruby 2.0 – Marc-André Lafortune Nov 18 '11 at 23:00

Re: what's the advantage over using a string?

  • Styling: its the Ruby-way
  • (Very) slightly faster value look ups since hashing a symbol is equivalent to hashing an integer vs hashing a string.

  • Disadvantage: consumes a slot in the program's symbol table that is never released.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.