2010/4/12 Derick Rethans :
> On Tue, 30 Mar 2010, Jérôme Loyet wrote:
>
>> As dreamcast4 advises me in the previous FPM conversation, I just
>> wrote the RFC for the FPM INI syntax.
>>
>> It can be read here: http://wiki.php.net/rfc/fpm/ini_syntax
>>
>> Tell me what you think.
>
> That seems to be
2010/3/25 Jérôme Loyet :
> I made some conf file exemple to really see what it will be:
>
>
>
> http://www.fatbsd.com/fpm/ini_with_sections_and_default_and_include.html
>
> From my point of vue, a conf file should be the less redundant as
> possible and should be splitable in different files (in t
Wait a sec,
As a previous maintainer, I dont believe I should really have as much
weight in this decision as the rest of the internals group. It does
seem like plenty enough discussion over this INI business. Theres now
over 40+ mails on this thread, mostly about ini. And this is not the
only disc
On Tue, Mar 23, 2010 at 10:16 PM, Zeev Suraski wrote:
> At 00:01 24/03/2010, Derick Rethans wrote:
>>
>> I don't see how this actually matters. None of the other SAPIs are
>> configured with a php.ini syntax.
>
> None of the other SAPIs are configured, period; The little configuration
> they do h
On Tue, Mar 23, 2010 at 8:55 PM, Antony Dovgal wrote:
> Now I was never an XML fan myself, but I think THIS particular XML config file
> is even easier to read and understand than php.ini.
Actually, I agree with Antony on this point. The existing XML config
file is pretty easy to read. I didn't i
And remember,
Its not just the number of times its send to ICU for conversion. Its
also the number of times your UTF-16 string has to be converted back
into utf-8 afterwards. This is why Apple makes its utf-16 strings
immutable. So they are read-only, and the utf-8 representation can be
cached aft
On Tue, Mar 16, 2010 at 6:32 PM, Rasmus Lerdorf wrote:
> On 03/16/2010 10:40 AM, dreamcat four wrote:
>> As for text files on disk, if they are unicode, they are most commonly
>> utf-8 too. So then, why use utf-16 as internal unicode representation
>> in Php? It doesn't
On Tue, Mar 16, 2010 at 11:48 AM, dreamcat four wrote:
> On Tue, Mar 16, 2010 at 8:30 AM, Lester Caine wrote:
>> '3' is not a very processor friendly number, so working with 4 even though
>> wasteful on memory, does make perfect sense. How long is it since we had a
On Tue, Mar 16, 2010 at 8:30 AM, Lester Caine wrote:
> '3' is not a very processor friendly number, so working with 4 even though
> wasteful on memory, does make perfect sense. How long is it since we had a
> 640k limit on working memory? SERVERS should have a good amount of memory
> for caching i
Hi,
I used to work a job where we used UTF-16 for embedded applications.
Our company chose UTF-16 over UTF-8 because it was byte-aligned and
therefore faster / more effecient to process than UTF-8. However
theres no reason why UTF-8 has to be drastically slower. The truch is,
even we could have use
Here,
http://github.com/php/php-src/commits/PHP_5_3_1
http://github.com/php/php-src/blob/93b4bd98771412ee2dbd18efa71e223a1daf3536/NEWS
On Wed, Oct 21, 2009 at 5:18 PM, Justin Rovang
wrote:
> Are there changelogs available without downloading?
> I keep digging but can't find one - only for standa
On Sat, Sep 26, 2009 at 8:19 PM, Hannes Magnusson
wrote:
> Hi all
>
> Scott has been very busy the last weeks and doesn't have any time to
> get a buildbot setup running[1], so I am seeking volunteers for the
> task.
Hi,
I can't spare myself to volunteer, however trying to help. Just wanted
to po
Hello Internals list,
Today i've had first successful compilation of the fpm sapi (in PHP src tree)
So here's a current status for these efforts:
Libevent:
===
Nick, who is the author of Libevent, says we should not need the modification.
Link:
http://sourceforge.net/tracker/?func=detail&a
To import a branch for the FPM sapi upstream. Thread:
http://aspn.activestate.com/ASPN/Mail/Message/php-dev/3749955. Referred by
Derick Rethans (der...@php.net).
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
On Wed, Sep 9, 2009 at 10:58 AM, Derick Rethans wrote:
> I would actually suggest to make a branch in the PHP SVN so that you can
> make the modifications in there and make things work. From there on we
Thank you. Don't have svn-commit access so kindda need to get that.
> could then merge it into
On Wed, Sep 9, 2009 at 9:18 AM, Stanislav Malyshev wrote:
> Exactly. That's why I don't have a problem of it being a separate SAPI - we
> have about 20, what harm could one more do? :) It's much safer this way. And
> if we discover merging into sapi/cgi really makes sense - at least we'd have
> cod
On Wed, Sep 9, 2009 at 2:23 AM, Stanislav Malyshev wrote:
> Hi!
>
>> The question is: Do you want fpm-sapi (or not)?
>
> If it applies cleanly to PHP and doesn't require changes in the core, then
> why not?
> But for that I guess there should be some build modifications that make
> common build (i.
I'm 99% sure, this proposal this time around is for a seperate SAPI
only. So that's not the question being asked here.
The question is: Do you want fpm-sapi (or not)?
On Wed, Sep 9, 2009 at 1:01 AM, Rasmus Lerdorf wrote:
> This has been discussed before. See:
> http://news.php.net/php.internals/4
Hi!
We have today been asked by Debian and Ubuntu Maintainers to merge our
code up to PHP repository.
They have stated that they want to see the fpm sapi variant officially
supported.
It would be nice to hear what you guy's official decision would be
about something like this.
Here are some detai
Hi,
Can this snippet of shebang checking be removed for php 5.3.+, 6?
Its for external FPM project.
cgi_main.c:
php_fopen_primary_script(&file_handle TSRMLS_CC);
if (CGIG(check_shebang_line) && file_handle.handle.fp &&
(file_handle.handle.fp != stdin)) {
On Sat, Aug 22, 2009 at 8:11 PM, dreamcat four wrote:
> now. Maybe theres something else I can try?
Ahh !
It appears I should be looking in sapi/cgi_main.c overridden by PHP-FPM.
Sorry to bother you all with my previous message.
Many thanks
dreamcat4
dreamc...@gmail.com
--
PHP Intern
Hello,
Working on php-cgi variant PHP-FPM 0.6.0.
Link: http://dreamcat4.jottit.com/new_php5-fpm_testing_candidate
The resulting FPM binary works BUT refuses to load Zend extensions. Oh
- so close!
dreamc...@ubuntu910server:/usr/local/src/play/f$ sudo /etc/init.d/php5-fpm start
Starting php_fpm Fa
22 matches
Mail list logo