Tagged Questions

137
votes
23answers
8k views

Tactics for using PHP in a high-load site

Before you answer this I have never developed anything popular enough to attain high server loads. Treat me as (sigh) an alien that has just landed on the planet, albeit one that knows PHP and a few ...
6
votes
5answers
1k views

What would you recommend for a high traffic ajax intensive website?

For a website like reddit with lots of up/down votes and lots of comments per topic what should I go with? Lighttpd/Php or Lighttpd/CherryPy/Genshi/SQLAlchemy? and for database what would scale ...
5
votes
5answers
161 views

Better Practice: Placing the load on SQL or Web server?

I'm the webmaster for a major US university. We have a great deal of requests on our website, which I've built and been in charge of for the last 7 years or so. I've been building ever-more-complex ...
5
votes
3answers
315 views

How digg (or other high load category websites) are storing user sessions?

How does digg or any other high-traffic website store user sessions? What do they use for storing the user sessions? File system, DB (which one?), memcache or both? Let's imagine a simple situation. ...
2
votes
4answers
83 views

Moving the mysql query out of the loop

i have the following code function cron_day_counts() { $subids = get_subids(); array_push($subids, ''); $from = '2011-10-19'; $to = '2011-10-20'; $days = days_interval($from, ...
1
vote
5answers
236 views

Books or resources for high-loaded sites [closed]

Currently I'm developing high-loaded financial portal(we use LAMP to run our project). There are great number of incoming data to be processed and stored. So optimization tasks become very important ...
0
votes
2answers
115 views

Need to speed up this php script

I'm currently having more than 400k records in my mysql table. The structure is the following: The function i am using: function cron_hour_counts() { $subids = get_subids(); ...
0
votes
1answer
63 views

big commercial site problems [closed]

I'm about to start a large scale commercial site. That site some times to promote itself, give very cheap promotions. I heard a site made some mistake for similar stiation. They opened the deal for ...
0
votes
1answer
44 views

Free resources while waiting for remote gate in (PHP, Apache, Nginx)

My php script waits for remote gate response, normally for ~20 seconds. It causes apache httpd threads to live in memory with opened MySQL connection and finally to exceed MaxClients value. How it can ...
-3
votes
1answer
97 views

PHP: Which cms to use for high load online-store? [closed]

I'm going to develop online store. The attendance is about 1000-1500 persons per day. There will be going a lot of products at the same time - about 60 000 -80 000. Each product has description, 5 ...