The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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 correctly using XS implementation, like fork()'ing another process for every request. But this is not a bad thing, you should never 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>

COPYRIGHT

Copyright 2011 Alexandr Gomoliako. All rights reserved.