This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients christian.heimes, lemburg, methane, rhettinger, serhiy.storchaka
Date 2017-02-01.10:07:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485943646.24.0.611150475238.issue29410@psf.upfronthosting.co.za>
In-reply-to
Content
The performance of hash algorithm shouldn't affect general benchmarks since hash value is cached inside string object. Almost all dict lookups in critical parts are lookups with interned strings. But in corner cases the difference can be measurable. We should look not on results of macrobenchmarks, but find worst cases.

There is also an alignment issue with the implementation of SipHash-2-4 (and I suppose with SipHash-1-3). See issue28055.
History
Date User Action Args
2017-02-01 10:07:26serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, rhettinger, christian.heimes, methane
2017-02-01 10:07:26serhiy.storchakasetmessageid: <1485943646.24.0.611150475238.issue29410@psf.upfronthosting.co.za>
2017-02-01 10:07:26serhiy.storchakalinkissue29410 messages
2017-02-01 10:07:25serhiy.storchakacreate