/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/compared-opencm.txt

  • Committer: Martin Pool
  • Date: 2005-06-27 01:36:22 UTC
  • Revision ID: mbp@sourcefrog.net-20050627013622-0d56be3e3105043e
Merge from aaron:

------------------------------------------------------------
revno: 763
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 17:30:28 -0400
message:
  Copy files in immutable stores directly.
------------------------------------------------------------
revno: 762
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 16:12:33 -0400
message:
  Fixed direct call of get_url in RemoteBranch.get_revision
------------------------------------------------------------
revno: 761
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 12:00:31 -0400
message:
  Added prefetch support to update_revisions
------------------------------------------------------------
revno: 760
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:57:54 -0400
message:
  Added cache support to branch and pull
------------------------------------------------------------
revno: 759
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:21:37 -0400
message:
  Added find_cached_branch to branch
------------------------------------------------------------
revno: 758
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:17:10 -0400
message:
  Added CachedStore type to reduce remote downloads

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
******************
 
2
Compared to OpenCM
 
3
******************
 
4
 
 
5
  http://opencm.org/
 
6
 
 
7
 
 
8
Not very stable; apparently inactive.  
 
9
 
 
10
* Separated working copy & repository model.
 
11
 
 
12
* Files have long-lived identifiers.
 
13
 
 
14
* Files and revisions identified by the SHA-1 hash of their content
 
15
  (as in monotone); explicitly makes it easier to be sure we have the
 
16
  right one and prevents some tricks.
 
17
 
 
18
* Binding of objects to external names done on the client, so you can
 
19
  version e.g. database objects, instead of files.
 
20
 
 
21
* Directories are inferred by having files that exist under them;
 
22
  empty directories are a special case with an object of type DIR.
 
23
  
 
24
  This is a bit ugly.  I might rather have files given a name only
 
25
  relative to their parent directory.  So renaming a directory will
 
26
  only update the entry for the directory, and everything will move
 
27
  with it.
 
28
 
 
29
* Access-control rules about who can write to a central server. 
 
30
 
 
31
* Their design is somewhat similar to ours and used a lot of disk
 
32
  space -- enough to be a significant problem.
 
33
 
 
34
* Assigning human names to branches proved problematic -- i think this
 
35
  is a good reason to rely on the filesystem/URL space, which people
 
36
  already know how to manage and deal with.