Symbolized
Hash with indifferent access, with keys stored internally as symbols.
Install / Use
/learn @TamerShlash/SymbolizedREADME
Symbolized
Symbolized provides a Hash with indifferent access, but with keys stored internally as symbols. This is particularly useful when you have a very big amount of hashes that share the same keys, and it may become inefficient to keep all these identical keys as strings. An example of this case is when you have data processing pipelines that process millions of hashes with the same keys.
Installation
You can either install it manually:
% [sudo] gem install symbolized
Or include it in your Gemfile:
gem 'symbolized'
And then run bundle install.
Usage
require 'symbolized'
# You can create a SymbolizedHash directly:
symbolized_hash = SymbolizedHash.new
symbolized_hash['a'] = 'b'
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a] #=> 'b'
symbolized_hash.keys #=> [:a]
# Or initialize it with a normal hash:
symbolized_hash = SymbolizedHash.new({'a' => 'b'})
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a] #=> 'b'
symbolized_hash.keys #=> [:a]
# Or use the Hash#to_symbolized_hash core extension:
h = { 'a' => 'b' }
h['a'] #=> 'b'
h[:a] #=> nil
h.keys #=> ['a']
symbolized_hash = h.to_symbolized_hash
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a] #=> 'b'
symbolized_hash.keys #=> [:a]
The gem provides almost the same methods and functionality provided by ActiveSupport's HashWithIndifferentAccess, while storing keys internally as Symbols.
ActiveSupport Compatibility
This gem is built with intent to be as much as possible compatible with ActiveSupport. You can include both Symbolized and ActiveSupport, and you are guaranteed to get ActiveSupport functionality and core extensions, and still have Symbolized core extension and class.
Testing
Checkout travis.yml to see which Ruby versions the gem has been tested against. Alternatively, if you want to test it yourself, you can clone the repo, run bundle install and then run rake test.
Suggestions, Discussions and Issues
Please propose suggestions, open discussions, or report bugs and issues here.
Contributing
- Fork the repo
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Credits
The current code of this gem is heavily based on ActiveSupport 4.2 HashWithIndifferentAccess. Some parts are direct clones, other parts have been modified and/or refactored.
License
Copyright (c) 2015 Tamer Shlash (@TamerShlash). Released under the MIT License.
Related Skills
openhue
345.4kControl Philips Hue lights and scenes via the OpenHue CLI.
sag
345.4kElevenLabs text-to-speech with mac-style say UX.
weather
345.4kGet current weather and forecasts via wttr.in or Open-Meteo
tweakcc
1.5kCustomize Claude Code's system prompts, create custom toolsets, input pattern highlighters, themes/thinking verbs/spinners, customize input box & user message styling, support AGENTS.md, unlock private/unreleased features, and much more. Supports both native/npm installs on all platforms.
