On Tue, Jan 13, 2015 at 3:01 AM, Stephan Beal <[email protected]> wrote:
> On Tue, Jan 13, 2015 at 2:40 AM, Kelly Dean <[email protected]> wrote: > >> The NetBSD people would probably be happy to spend a few GB of disk space >> on that cache in exchange for Fossil being fast. As with Fossil's other >> caches and indexes, this would be built locally, not transferred over the >> network when syncing. >> > i don't have the bsd repo to try this with, but here's how you can figure out the total uncompressed size of all checkins: select sum(b.size) from blob b, event e where e.type='ci' and b.rid=e.objid; interestingly, TCL, with its much longer history, has only slightly more space used by manifests than the core fossil repo, probably because it uses delta manifests and our core repo does not: [stephan@host:~/cvs/fossil/tcl]$ f-query -e "select sum(b.size) from blob b, event e where e.type='ci' and b.rid=e.objid" sum(b.size) 233986926 [stephan@host:~/cvs/fossil/tcl]$ cd ../fossil [stephan@host:~/cvs/fossil/fossil]$ f-query -e "select sum(b.size) from blob b, event e where e.type='ci' and b.rid=e.objid" sum(b.size) 214835867 @Joerg: could you run that on NetBSD for us? -- ----- 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

