On Mon, Jan 12, 2015 at 8:06 PM, Stephan Beal <[email protected]> wrote:

> 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?
>

I keep my NetBSD repo sync'd nightly with Joerg's:

sum(b.size)
59898532831
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to