]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
update
authorwessels <>
Tue, 21 Oct 1997 04:58:53 +0000 (04:58 +0000)
committerwessels <>
Tue, 21 Oct 1997 04:58:53 +0000 (04:58 +0000)
ChangeLog
TODO

index 7c07ef908f8bcfa40ebaa58dff9a8779351ee4ac..5c87135311c2c57bacb229ff0b80e9f2839e07a9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Changes to squid-1.2.beta1 ():
+
+       - Reworked storage manager to not keep objects in memory during
+         transit.  In other words, no separate NOVM distribution.
+       - Lots of cleanup and debugging for beta release.
+       - Use snprintf() everywhere instead of sprintf().
+       - The 'in_memory' hash table has been replaced with a
+         doubly-linked list.  New objects are added to the head of
+         the list.  When memory space is needed, old objects are
+         purged from the tail of the list.
+
 Changes to squid-1.2.alpha7 ():
 
        - fixes fixes fixes.
diff --git a/TODO b/TODO
index 6efb61e709e2c8d7f1f8724c5518d327768d2b02..95840188f562cfc65f21f7fff0cb78f5e561e5ef 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,6 +1,4 @@
-+ fix all the assert(!ERR_FOO) placeholders
-+ Finish hacking at storeCopy() to achieve in-memory sliding window
-  for objects being retrieved.
++ copy over new -z semantics; don't automatically wipeout cache
 
 + we don't properly handle the HTTP/1.1 'Connection' header
 + ETag support (makes metadata bigger--ack!)
@@ -32,3 +30,6 @@
 DONE:
 + s/sprintf/snprintf/g
 + Write the text for all the error message files
++ fix all the assert(!ERR_FOO) placeholders
++ Finish hacking at storeCopy() to achieve in-memory sliding window
+  for objects being retrieved.