1

Has anybody ever tried HipHop or any other PHP acceleration method for SquirrelMail? Was it a plug-and-play thing, or did it require significant modification of the source code?

adamo
  • 6,867
  • 3
  • 29
  • 58

1 Answers1

1

SquirrelMail would require a large amount of rewrites to work with HipHop, because of the magic calls it relies on such as eval() in the gettext class.

APC's optimization for SquirrelMail should suit most needs, and Rasmus' talk at Digg about PHP optimization really articulates why that is: http://about.digg.com/blog/rasmus-lerdorf-php-performance

Eric Caron
  • 135
  • 3