Hi Folks:Can some one please guide me how to configure fossil web server on 80 port. I want to change it from 8080 to 80. on a ubuntu box. -Abhinas
Date: Wed, 26 Mar 2014 14:14:25 +0100 From: [email protected] To: [email protected] Subject: Re: [fossil-users] Partial hash collision On Wed, Mar 26, 2014 at 1:22 PM, Stephan Beal <[email protected]> wrote: Last summer i remember running some numbers on this in the tcl repo and IIRC the biggest collision was 10 or 11. 12 seemed to be the magic point at which all collisions disappear (IIRC). It seems that in fossil the highest collision in fossil is 8 bytes long: sqlite> select substr(uuid,0,8) as short, count(*) from blob group by short having count(short)>1; b652b90|2sqlite> select uuid from blob where uuid glob 'b652b90*'; b652b900e940c3bb5cbbfb2b0c4a98cb5edb1c90 # a ticket re. RSS feedb652b9088b0d9e9cc8c2fb4c153443d72429d7c9 # some old/replaced C file sqlite> select substr(uuid,0,9) as short, count(*) from blob group by short having count(short)>1;sqlite> select substr(uuid,0,10) as short, count(*) from blob group by short having count(short)>1; sqlite> select substr(uuid,0,11) as short, count(*) from blob group by short having count(short)>1; collisions start to become "common" at 7 bytes: sqlite> select substr(uuid,0,7) as short, count(*) from blob group by short having count(short)>1; 0830c3|26fdf52|28d712d|2904ab4|2927257|2940431|2b652b9|2ba837f|2bdbf14|2be32eb|2c1b1ba|2c8735d|2 d07537|2d43165|2e980ba|2ef17fb|2f94f7e|2 -- ----- stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal"Freedom is sloppy. But since tyranny's the only guaranteed byproduct of those who insist on a perfect world, freedom will have to do." -- Bigby Wolf _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
_______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

