NAME

Nginx::Engine::PP - Pure-perl implementation of the Nginx::Engine

SYNOPSIS

use Nginx::Engine::PP;

ngxe_init("/path/to/ngxe-error.log", 256);

# ...

ngxe_loop;

DESCRIPTION

Pure-perl implementation af the Nginx::Engine. Might be useful on Windows or if you want to do something that cannot be done cooretly using XS implementation, like fork()'ing another process for every request. But this is not a bad thing, you should newer use fork() or something that blocks for a long time in a high-performance event loop. Use separate process instead.

SEE ALSO

Nginx::Engine

AUTHOR

Alexandr Gomoliako <zzz@zzz.org.ua>

LICENSE

Copyright 2011 Alexandr Gomoliako. All rights reserved.

This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.