til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Ordered Hash

Standard hashes in Perl are unordered. For many years I have been using Tie::IxHash, which I wanted ordered hashes.

Hash::Ordered is, I believe, I recommended alternative and it works pretty well. There are some benchmarks, but I have not used in a setup where this was a requirement, so I have been satisfied with it’s interface and use.

Resources and References