Use symbols instead of strings for hash keys

이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

Metadata

ID: ruby-best-practices/symbols-as-keys

Language: Ruby

Severity: Notice

Category: Best Practices

Description

In Ruby, it is a best practice to use symbols instead of strings as hash keys. This rule emphasizes that it’s more efficient and idiomatic to use symbols for this purpose. Symbols are immutable and unique, which makes them ideal for identifying things, whereas strings are mutable and can create multiple objects for the same sequence of characters.

The importance of this rule lies in the performance and memory usage of your Ruby application. Using symbols as hash keys reduces memory usage because they are stored in memory only once during a Ruby process. This can make a significant difference in the efficiency of your application, especially when dealing with large data sets.

To ensure you’re following good coding practices, always use symbols for hash keys unless there’s a specific reason to use a string. A simple refactoring from values = { 'foo' => 42, 'bar' => 99, 'baz' => 123 } to values = { foo: 42, bar: 99, baz: 123 } will make your code compliant with this rule. This not only improves your code’s performance but also makes it more readable and consistent with Ruby’s conventions.

Non-Compliant Code Examples

values = { 'foo' => 42, 'bar' => 99, 'baz' => 123 }

Compliant Code Examples

values = { foo: 42, bar: 99, baz: 123 }
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis