~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/status.txt

  • Committer: Robert Collins
  • Date: 2007-07-02 07:11:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2583.
  • Revision ID: robertc@robertcollins.net-20070702071125-cfv9utb636hn3kg3
Clearer description of locality of reference tuning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
---------------------
65
65
 
66
66
- We should stat files in the same directory without reading or statting
67
 
files in other directories.
 
67
  files in other directories. That is we should do all the statting we
 
68
  intend to do within a given directory without doing any other IO, to
 
69
  minimise pressure on the drive heads to seek.
68
70
 
69
71
- We should read files in the same directory without reading or writing
70
 
files in other directories - and note this is separate to statting (file
71
 
data is usually physically disjoint to metadata).
 
72
  files in other directories - and note this is separate to statting (file
 
73
  data is usually physically disjoint to metadata).
72
74
 
73
75
 
74
76
Scaling observations