Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created PHP application for Facebook. It uses MySQL, Memcached and works on Lighttpd on Centos 2,6 Ghz and 2 GB RAM.

it's basically one PHP file that after first run is cached and every next time it's served in 0,8 ms directly from Memcached.

What more can I do to shorten this time?

share|improve this question
The question is why do you want to "make this time less"? – Ree Sep 30 '09 at 9:21
0,8 ms is pretty damn fast – code_burgar Sep 30 '09 at 9:23
Because when I published this app last time I had 10k concurrent requests. So it's 10k * 0,8 ms = 8 seconds. And it's too long. – tomaszs Sep 30 '09 at 9:23
probably, if performance is so crucial you should consider writing the app in another language and use multiple servers. – markus Sep 30 '09 at 9:36
@tharkun - Site is displayed directly from Memcached, so changing language will not help much. – tomaszs Sep 30 '09 at 9:39
show 2 more comments

4 Answers

up vote 11 down vote accepted

Once you get to 0.8 ms, I'm not sure you can go any lower.

However, you can set up multiple servers to handle many concurrent requests (with a common memcached). You will then be able to scale very high by simply adding a new server when you reach limits.

share|improve this answer
Agreed. You can only do so much from the software side before you have to start looking at hardware. – ryeguy Sep 30 '09 at 14:05

Run XDebug and run the profiler. There you can see if you have any functions that take an abnormal length of time.

I recommend using a program that reads those logs. Like kcachegrind etc.

BTW, when you enter profiler country, there's no turning back.

share|improve this answer
Hello, My Code is basically only getting HTML from Memcached and displaying it to user. – tomaszs Sep 30 '09 at 9:50
Then you should note that, since you tag it as PHP and talk about a PHP application – Ólafur Waage Sep 30 '09 at 10:52
@Olafur Sorry if I was not precise in my question. But as you written I asked my code again for sure. So thanks - it could be a solution. – tomaszs Sep 30 '09 at 11:45
Even if the page is simple, you might learn something from the profiler. There are many dark corners, where you can do micro-optimisations. – troelskn Sep 30 '09 at 13:59

You can put a http-proxy and load balance to multiple servers. Most http-proxies can double as a cache, which can take load off the application.

Also, make sure that you send the proper http headers, so that your pages are client-side cacheable. This may reduce the number of requests, as the clients will reuse their cached version.

share|improve this answer
Http header ! check that ! – Antoine Claval Sep 30 '09 at 14:27

Do you have a php script which gets data from memcached and displays them, or the web server itself gets data, directly from memcached?

I don't know if lighthttpd can display page directly from memcached, but i know nginx can do this google for ngx_http_memcached_module

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.