Closed casperisfine closed 5 years ago
Hello, @casperisfine! This is your first Pull Request that will be reviewed by Ebert, an automatic Code Review service. It will leave comments on this diff with potential issues and style violations found in the code as you push new commits. You can also see all the issues found on this Pull Request on its review page. Please check our documentation for more information.
While running
memory_profiler
against our app, I noticedresponders
was duplicating some action names:Solution
Rather than to cast all that as strings, we do the inverse, we cast everything as symbols. These are action names, so they're normally a fairly limited set. Interning them shouldn't be a concern.
cc @rafaelfranca