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.

Unsupported provider

Author Vlado.Boza
Recipients Arfrever, PaulMcMillan, Vlado.Boza, dmalcolm, koniiiik, vstinner
Date 2012-04-20.17:44:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334943847.01.0.765567078717.issue14621@psf.upfronthosting.co.za>
In-reply-to
Content
One possible fix:
Look for StringHasher in google v8 code (http://code.google.com/p/v8/source/search?q=stringhasher&origq=stringhasher&btnG=Search+Trunk). Main loop looks like this:
raw_running_hash_ += c;                                                                       
raw_running_hash_ += (raw_running_hash_ << 10);                                               
raw_running_hash_ ^= (raw_running_hash_ >> 6);  

It seems not to have same collisions with many different hash seeds.
History
Date User Action Args
2012-04-20 17:44:07Vlado.Bozasetrecipients: + Vlado.Boza, vstinner, Arfrever, dmalcolm, PaulMcMillan, koniiiik
2012-04-20 17:44:07Vlado.Bozasetmessageid: <1334943847.01.0.765567078717.issue14621@psf.upfronthosting.co.za>
2012-04-20 17:44:06Vlado.Bozalinkissue14621 messages
2012-04-20 17:44:06Vlado.Bozacreate