This is a discussion on Compilers within the PHP General forums, part of the PHP Programming Forums category; Anyone use compilers (linux based or Windoze) and which do you use? Looking for something free (best) or low cost ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Anyone use compilers (linux based or Windoze) and which do you use?
Looking for something free (best) or low cost as we are doing some investigation on what methods are best for some of the stuff we have, and I'm thinking a compiled PHP app should run faster. Thanks! Wolf |
|
|||
|
Wolf wrote:
> Anyone use compilers (linux based or Windoze) and which do you use? > > Looking for something free (best) or low cost as we are doing some > investigation on what methods are best for some of the stuff we have, > and I'm thinking a compiled PHP app should run faster. There's the free eaccelerator. It doesn't spit out compiled php code, but it does have the same effect by caching the generated byte-code. -- Richard Heyes +44 (0)800 0213 172 http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the cost of online support |
|
|||
|
Richard Heyes wrote:
> Wolf wrote: >> Anyone use compilers (linux based or Windoze) and which do you use? >> >> Looking for something free (best) or low cost as we are doing some > > investigation on what methods are best for some of the stuff we have, >> and I'm thinking a compiled PHP app should run faster. > > There's the free eaccelerator. It doesn't spit out compiled php code, > but it does have the same effect by caching the generated byte-code. > I don't know about the free accelerators but the payed ones have some really impressive results. I managed to speed things up with more than 10 times. It worths every penny. |
|
|||
|
On 10/30/07, Richard Heyes <richardh@phpguru.org> wrote:
> > Wolf wrote: > > Anyone use compilers (linux based or Windoze) and which do you use? > > > > Looking for something free (best) or low cost as we are doing some > > investigation on what methods are best for some of the stuff we have, > > and I'm thinking a compiled PHP app should run faster. > > There's the free eaccelerator. It doesn't spit out compiled php code, > but it does have the same effect by caching the generated byte-code. i wonder if OP is talking about compiling down to binary. there are such things available for java http://gcc.gnu.org/java/ albiet older jvms. i dont know of anything like this available for php; but remember, in general, compiling an interpreted language will result in different behavior than running it through the interpreter. -nathan |
|
|||
|
In the works:
http://phpcompiler.org/ The guys working on it are still actively developing and answering the support list. It does not compile to executable yet (I understand it mostly does except for some tricky parts of the language) but it helps development with other tools that you will find in their site. Satyam ----- Original Message ----- From: "Wolf" <lonewolf@nc.rr.com> To: "php-general" <php-general@lists.php.net> Sent: Tuesday, October 30, 2007 4:36 PM Subject: [php] Compilers > Anyone use compilers (linux based or Windoze) and which do you use? > > Looking for something free (best) or low cost as we are doing some > investigation on what methods are best for some of the stuff we have, and > I'm thinking a compiled PHP app should run faster. > > Thanks! > Wolf > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.503 / Virus Database: 269.15.12/1098 - Release Date: > 29/10/2007 9:28 > > |