I�m doing an internal redirect within a function of my Taglib (built using
TaglibHelper), the code goes like so;
#===========================
sub HTTP
#---------------------------
{
my ($redirect_page) = @_;
my $r = Apache::Request->new(shift);
$r->internal_redirect_handler($redirect_page);
return OK;
}
# ____ End of HTTP ____
Simple stuff eh, the thing is when internal_redirect() is used within my
taglib the redirect seems v-v-slow. My comparison being a custom handler
using internal_redirect, running outside of AxKit elsewhere on our site.
Has anyone got any ideas why the redirect is so slow, I�m know its because
I�m using it outside a handler but am not sure how to correct the problem
and redirect quickly from with a function of my AxKit taglib.
Any help really appreciated!