Odd hack that I'm currently using on one site. Here to document it. Will not commit code until it's been generalized.

CommentFileSizeAuthor
#1 boost-784676.patch4.93 KBmikeytown2

Comments

mikeytown2’s picture

Status: Active » Needs work
StatusFileSize
new4.93 KB

I use the anchor tag (#) to hold the nid; # doesn't effect the real URL. This allows for 2+ entries in the database for the same view page; thus allowing multiple independent expiration times for a cached view page. This works great with the CCK date field, if used as a view filter.

mikeytown2’s picture

boost_cache_expire_router()

    while ($info = db_fetch_array($result)) {
      if (stristr($info['filename'], '#')) {
        continue;
      }
      $files[$info['hash']] = $info;
      if (BOOST_VERBOSE >= 9 && isset($_boost['verbose_option_selected']['boost_cache_expire_router'])) {
        $list[] = $info['filename'];
      }
    }