Search Results

1
vote

Which PHP opcode cacher should I use to improve performance?

I've been using XCache for more than a year now with no problems at all. I tried to switch to eAccelerator, but ended up with a bunch of segmentation faults (it's less forgiving of errors). …
2
votes

Slow SQL Query due to inner and left join?

What you should usually do is turn on the "Show Actual Execution Plan" option and then take a close look at what is causing the slowdown. (hover your mouse over each join to see the details) You'll …