On Thu, 29 Aug 2002 Philip S Tellis wrote :
On 29 Aug 2002, Amol Hatwar wrote:
If you need the functions to be fast - they should be; (PHP is
about
speed) we can implement it in C, and extend PHP. Perhaps, even
get our
AFAIK, PHP is nowhere near as fast as C (and friends), LISP, Perl, Ruby and Python.
Philip :), give me something authoritative to believe you. And besides that my mail wasn't even about what is fast!
Regards,
-ah.
At 10:41 morn 8/29/02 +0000, Amol wrote:
On Thu, 29 Aug 2002 Philip S Tellis wrote :
AFAIK, PHP is nowhere near as fast as C (and friends), LISP, Perl, Ruby and Python.
Philip :), give me something authoritative to believe you. And besides that my mail wasn't even about what is fast!
It is been bench-marked (and generally accepted) that C, Lisp, Ocaml are (much) faster than PHP. C compiles to native binary. Lisp compiles to native binary. As far as I know PHP is just a scripting language.
regards, quasi
hi,
since it seems there are no readily integrated libs in PHP for statistical analysis, one might take following approach,
use python/Perl to write a simple script that does statistical data analysis, there are many statistical analysis modules for python, see python.org modules section. There are probably Perl packages also around.
use PHP to build your webapp and channel data stream to your script for fast computation and get back results.
This way you might be able to build the app quickly without worrying about writing a dynamic module for PHP in C which has custom made functions.
HTH,
Rajesh