Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
169 views

Is there any way to access information about a Coldfusion server's load from within coldfusion?

I am writing a scheduled task which I would like to run frequently. The problem is that I do not want this task to be run if the server is experiencing a high traffic load. Is there any way other ...
3
votes
3answers
58 views

Would it be better to include() resources (css,js) or to let the browser do another request?

Would it be faster include a javascript file and outputting it in the html as a <script> or just use the src attribute and let the browser make another request? Simply outputting it instead of ...
3
votes
3answers
229 views

How many users are sufficient to make a heavy load for web application

I have a web application, which has been suffering high load recent days. The application runs on single server which has 8-core Intel CPU and 4gb of RAM. Software: Drupal 5 (Apache 2, PHP5, MySQL5) ...
3
votes
5answers
1k views

How many Requests per Minute are considered 'Heavy Load'? (Approximation)

Often times people talk in their (optimization & performance related) questions and answers about 'heavy load'. I'm trying to quantify this in the context of a regular web application on a ...
2
votes
1answer
37 views

Is sending mails through SMTP better than php mail() in terms of server load?

I am sending >1000 mails per day for a mailing list. Right now they are all sent with php mail(). Would it put less load on the server if they were sent through a script with SMTP ?
1
vote
4answers
43 views

How do I change the tables I use when my site has a lot of traffic?

Well, I have built a set of tables that run are meant to run with fewer joins, but I want to keep my normalized database around. Is there a way to switch between them when my site has a lot of ...
1
vote
2answers
71 views

Server Load: mySQL vs PHP Functions

Here is my situation: Situation: I have users, and I have multiple values in multiple categories for each user. The way I see it I have two options: I. Make a new table 'values': user_ID ...
1
vote
2answers
124 views

Having separate domains for images and content instead of a subdomain

Some sites use a separate domain for images the site uses, for example YouTube has ytimg.com and Twitter has twimg.com. I can see the benefits of serving the images from a separate server but why the ...
1
vote
3answers
170 views

How to get requests per minute count within java web app

In my particular web app I need a heavy load statistics, such as "requests per minute". How to obtain this value within Servlet API based webapp?
0
votes
1answer
98 views

Sphinx indexer slows down the database: How to give it low priority?

All my tables use InnoDB, and I have set sphinx sql_range_step to the minimum, which is 128. This improved the performance a lot, but it is still very slow if you make a request right after a new step ...
0
votes
2answers
176 views

PHP CRON jobs vs. calling functions on a user login

I'm hoping I can get some advice. I have accounting ledgers in my PHP/MySQL system, with invoices that hit the ledger at intervals (for this example, let's just say once a month). I also have late ...
0
votes
4answers
392 views

How do you calculate server load in PHP?

How do you calculate the server load of PHP/apache? I know in vBulletin forums there's the server load displayed like 0.03 0.01 0.04 but it's not really understandable to a average joe. So I thought ...
0
votes
3answers
162 views

Php explode or unique Mysql table for user's friends?

I will create frienship system for my project. I couldn't decide whether I should store friends in a column at user's row or create a friends table and store there with user IDs? To clearify which ...
0
votes
1answer
66 views

Android server load advice

I'd like a bit of advice on how to retrieve, process and store data. I'm building an app which gets finds the nearest laser tag site to where you are. The adderss data is stored (due to some bad ...
0
votes
4answers
264 views

How dangerous is this sql query?

The query: UPDATE node as n right join content_type_product as c on n.nid = c.nid right join uc_products as p on p.nid = n.nid set c.field_product_price_eur_value ...
0
votes
1answer
168 views

ASP.Net number of servers estimation

Let's assume our average page weights P KBytes and we've got N visits per unit time (let's say, per hour). How could we estimate the number of servers needed to support this load with a reasonable ...