You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Zeev Suraski da5464b145 - zend_file_handles must now flag whether their .filename property should be 26 years ago
..
Makefile.am Added the wrong file. 27 years ago
README Implemented direct writing to the client's FD if RXML parsing of the result isn't selected. 27 years ago
config.h.stub Now ZTS can be used. Unless --enable-roxen-zts is specified at the 27 years ago
config.m4 Now ZTS can be used. Unless --enable-roxen-zts is specified at the 27 years ago
phpmod.pike Now the new direct write is enabled too... 27 years ago
roxen.c - zend_file_handles must now flag whether their .filename property should be 26 years ago

README

Roxen PHP support. Early version. Don't expect to be able to get it to
work. Requires Pike 0.7.79 and Roxen 1.4. Anything less won't work.

The module is now thread safe, in a couple of different modes. First
mode, the default, uses a process global PHP lock in the Roxen
module. This means that all PHP-requests are serialized (ie only one
script is executed at any one time). The second option is using ZTS
(Zend Thread Safe mode). Unless --enable-roxen-zts is specified, this
won't be used. For now this uses a global lock in the PHP interpreter
so the end result is the same (only one concurrent script). In the
future this might change though, but for now you are better off using
the non-ZendThreadSafe version (which works fine with Roxen and
threads).

- The Author, David Hedbor <neotron@php.net>