http://api.drupal.org/api/function/comment_reply/6
I see
comment_reply stdClass
OR
comment_reply 1797
in the boost_cache table

Comments

mikeytown2’s picture

in _boost_get_menu_router()

  // Handle comments
  if ($args[0] == 'comment' && $args[1] == 'reply' && is_numeric($args[2])) {
    $router_item['page_callback'] = 'comment_reply';
    $router_item['page_id'] = $args[2];
    if (is_numeric($args[3])) {
      $router_item['page_type'] = $args[3]);
    }
    return $router_item;
  }
mikeytown2’s picture

hmmm looks like this code in boost_is_cacheable() is not working correctly; because I'm seeing comment/reply in my boost_cache table

  // Never cache
  //  comment reply pages
      || preg_match('!comment/reply$!', $normal_path)
mikeytown2’s picture

Status: Active » Fixed

fixed the regular expression

|| preg_match('!^comment/reply!', $normal_path)

committed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.