diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2003-01-11 16:04:42 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2003-01-11 16:04:42 +0000 |
commit | 943299bbf911fb6125c2674bf6720fdc00d0f3bb (patch) | |
tree | cbb6ffc487da50ba7f3dcc203f5083a2d586a309 /ace/Filecache.h | |
parent | 878468f4fc0ba6e08c975af53bc320df875e7daa (diff) | |
download | ATCD-943299bbf911fb6125c2674bf6720fdc00d0f3bb.tar.gz |
ChangeLogTag:Sat Jan 11 09:37:24 2003 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Filecache.h')
-rw-r--r-- | ace/Filecache.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Filecache.h b/ace/Filecache.h index 4ea4b141a76..78bedd38a64 100644 --- a/ace/Filecache.h +++ b/ace/Filecache.h @@ -67,18 +67,18 @@ class ACE_Filecache_Object; */ class ACE_Export ACE_Filecache_Handle { - - // (1) Get rid of the useless copying of files when reading. Although - // it does make sure the file you send isn't being changed, it doesn't - // make sure the file is in a sensible state before sending it. - - // Alternative: if the file get's trashed while it is being shipped, let - // the client request the file again. The cache should have an updated - // copy by that point. - + // (1) Get rid of the useless copying of files when reading. + // Although it does make sure the file you send isn't being changed, + // it doesn't make sure the file is in a sensible state before + // sending it. + // + // Alternative: if the file get's trashed while it is being shipped, + // let the client request the file again. The cache should have an + // updated copy by that point. + // // (2) Use hashing for locating files. This means I need a hastable // implementation with buckets. - + // // (3) Only lock when absolutely necessary. JAWS_Virtual_Filesystem was // rather conservative, but for some reason it still ran into problems. // Since this design should be simpler, problems should be easier to spot. |