next up previous contents index
Next: 32.2.3 Debugging Up: 32.2 Overview of web Previous: 32.2.1.0.2 Configuration parameter

   
32.2.2 Managing web pages

Http also provides OTcl interfaces to manage a set of pages. The real management of pages are handled by class PagePool and its subclasses. Because different HTTP objects have different requirements for page management, we allow different PagePool subclasses to be attached to different subclasses of Http class. Meanwhile, we export a common set of PagePool interfaces to OTcl through Http. For example, a browser may use a PagePool only to generate a request stream, so its PagePool only needs to contain a list of URLs. But a cache may want to store page size, last modification time of every page instead of a list of URLs. However, this separation is not clearcut in the current implementation.

Page URLs are represented in the form of: ServerName:SequenceNumber where the ServerName is the name of OTcl object, and every page in every server should have a unique SequenceNumber. Page contents are ignored. Instead, every page contains several attributes, which are represented in OTcl as a list of the following (name value) pairs: ``modtime val'' (page modification time), ``size val'' (page size), and ``age val''} The ordering of these pairs is not significant.

Following is a list of related OTcl methods.




next up previous contents index
Next: 32.2.3 Debugging Up: 32.2 Overview of web Previous: 32.2.1.0.2 Configuration parameter

2000-08-24