On Fri, Apr 29, 2005 at 01:49:18PM -0700, Linus Torvalds wrote: > > > On Fri, 29 Apr 2005, Matt Mackall wrote: > > > > The changeset log (and everything else) has an external index. > > I don't actually know exactly how the BK changeset file works, but your > explanation really sounds _very_ much like it. I've never used BK, but I got the impression that it was all SCCS under the covers, which means adding stuff and reconstructing random versions is expensive (just as it is in CVS). The split between index and data in Mercurial is intended to address that. > I didn't want to do anything that even smelled of BK. Of course, part of > my reason for that is that I didn't feel comfortable with a delta model at > all (I wouldn't know where to start, and I hate how they always end up > having different rules for "delta"ble and "non-delta"ble objects). There aren't really any such rules here. While the index contains a full DAG, the deltas are done opportunistically on a linearized (topologically sorted) version of it. We try to make a delta against the previous tip (regardless of whether or not it's the parent), and if that is a win, we store it. > So it sounds like it could work fine, but it in fact sounds so much like > the ChangeSet file that I'd personally not have done it that way. Well I originally set out to do it differently, but I decided my current approach was the fastest route to something that actually worked. -- Mathematics is the supreme nostalgia of our time. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Apr 30 07:26:53 2005
This archive was generated by hypermail 2.1.8 : 2005-04-30 07:26:53 EST