From: normalperson@... Date: 2017-07-07T00:08:55+00:00 Subject: [ruby-core:81942] [Ruby trunk Feature#13725] [PATCH] Hash#[]= deduplicates string keys if (and only if) fstring exists Issue #13725 has been reported by normalperson (Eric Wong). ---------------------------------------- Feature #13725: [PATCH] Hash#[]= deduplicates string keys if (and only if) fstring exists https://bugs.ruby-lang.org/issues/13725 * Author: normalperson (Eric Wong) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- Hash#[]= deduplicates string keys if (and only if) fstring exists In typical applications, hash entries are read after being written to. Blindly writing to hashes which are never read makes little sense. So, for any hash which is read from, an fstring entry for the key should already exist for the key. We no longer blindly create fstrings if the code is blindly setting random hash keys, preventing the performance regression in the reverted r43870. Regarding , this has a minimum impact on the bm_so_k_nucleotide where hash keys are set and not reused, performance is within 1-2% of existing cases. * hash.c: #include gc.h for rb_objspace_garbage_object_p (hash_aset_str): do read-only check of fstring table and reuse fstring if it exists and is still alive (not garbage) ---Files-------------------------------- 0001-Hash-deduplicates-string-keys-if-and-only-if-fstring.patch (1.91 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: