Right, you don't need the seperate Blowery compression module. I tried to make them work together, but since both modules were working at that low level I had to incorporate the compression into the PageBlaster directly. This gives more than one advantage. - Less DLL's in the /bin folder.
- Less to configure (you can remove the sections from web.config)
- When PageBlaster saves to memory or disk, it actually saves a compressed copy, so the delivery of new pages does not have to be saved again.
The cached pages are saved in Memory and on Disk, when the memory interval expires after a page has not been accessed it will still be available on disk until that interval expires, then it will start all over again on the next page access. You can look in the cache-folder that is configured , by default it's /portals/_default/Cache, to see the cached pages on Disk. Yes, you still want to do the client-side HttpCacheability for even more performance improvement. The Pro version of the PageBlaster due out soon, will allow you to set all of this at the page level if desired. |