Tagged in

Programming

homo technologicus’ asylum
homo technologicus’ asylum
My experiences in a form of rants
More information
Followers
21
Elsewhere
More, on Medium

PHP performance 101: so you need to use a database

The talk I gave at PHP World in Washington, DC. In this talk I presented the most common database-related performance bottlenecks that can happen in most PHP applications.


Print override

I came across this problem when I decided to integrate Growl notification support for my Perl script. Instead of using a standard custom log() function, I wanted to override the print function to pipe the output to the media of my liking. Unfortunately, print is a reserved keyword in Perl which cannot…