seda.apps.Haboob.cache |
|
Java Source File Name | Type | Comment |
AFileRead.java | Class | This implementation of the Haboob "cache" does not actually
cache pages, but rather always reads them from files using
the Sandstorm AFile interface. |
BufferCache.java | Class | This implementation of the Haboob cache maintains a fixed-size set
of buffers that cache recently-accessed Web pages. |
PageCache.java | Class | This implementation of the Haboob page cache simply caches
recently accessed Web pages, and randomly removes pages from the
cache when the cache grows too large. |
PageCacheSized.java | Class | This version of PageCache maintains a list of cacheEntries for each
page size, and attempts to reuse old entries of the same size on reject. |
StaticPage.java | Class | This stage responds to HTTP requests with static pages. |