Re: redirecting

2005-10-01 Thread Michael Hall
Try simply: $r->headers_out->set(Location => 'to-URI'); return Apache2::Const::REDIRECT; The status of 302 is set automatically and my browsers reflect the new address. apache sends: HTTP/1.1 302 Found Date: Sun, 02 Oct 2005 06:00:12 GMT Server: Apache Location: to-URI Content-Length: 290 Conten

Re: how to share data among modperl processes

2005-10-07 Thread Michael Hall
You could try Cache::Memcached http://www.danga.com/memcached/ http://search.cpan.org/~bradfitz/Cache-Memcached-1.15/ It implements a dictionary spread across any number of memcached servers. It will also allow you to run your back end program on a different Perl interpreter, computer, operating