Issac Goldstand wrote:
> Murugan K wrote:
>
>> Hi I am new to mod_perl and i am developing some samples using
>> mod_perl . While developing sample , i do not want to restart the
>> server frequently with respect to my changes.
>>
>> So i used the $r->header_out("Pragma", "no-cache"); statement not
>> to cache the results. i seems to be not working for me .
>> Any suggestions and how to include the directives in the server side
>> not to cache the results.
>>
>> Thanks in advance
>> With Regards
>> K.Murugan
>>
> $r->no_cache(1);
> Issac
>
>
Actually, Per is correct. I just saw you trying to tell the browser not
to caache and assumed you wanted to know how to do that. See Per's
answer above. Sorry.
Issac