envato / double_entry

A double-entry accounting system for Ruby applications.
https://rubygems.org/gems/double_entry
MIT License
429 stars 68 forks source link

Back Transfer::Set and Account::Set with Hashes for performance benefits #129

Closed salamagd closed 7 years ago

salamagd commented 7 years ago

Every time we search for a particular transfer or account within their respective Sets, we iterate through all of them in an array - this change replaces both of these collections to use a Hash as the underlying datastore, allowing quick lookup.