Symbols are the conventional and preferred choice for hash keys in Ruby because they're memory-efficient (interned — one shared object) and fast to compare (by identity). Using symbol keys is idiomatic Ruby and the standard in frameworks like Rails.
Symbol keys vs string keys
user = { , , }
user[]
user = { => , => }
user[]
