Munja:
[color=blue][color=green]
>> The first thing you should do is profile your code and find out where the
>> bottleneck is. Based on that you can try to optimize the script, or maybe
>> even rewrite critical parts of it in C.[/color]
>
> I supose this is where I can maybe make some improvement. Do you know if
> there is some PHP performance mesuring tool on the market (something
> simillar to Borland Optimizeit for Java)?[/color]
There was a thread here very recently about that, but I didn't read it...
Try searching google groups for "php profiler/profiling". It's really
unfortunate that PHP doesn't come with a profiler :/
[color=blue]
> Also, how complicated is to make parts of scripts in C? Does it requiere
> dramatical Apache/PHP reconfiguration or it can be solved on more or less
> simple INCLUDE and CALL from PHP ?[/color]
If you can isolate the bottleneck and turn it into a function written in C
it shouldn't be too hard. That way you could keep the rest of the script as
it is. I guess you should start here:
http://www.php.net/manual/en/zend.php
A search also turned up this:
http://www.devnewz.com/2002/0909.html
And I'm sure there are plenty more resources out there.
André Nęss