Tagged Questions

0
votes
1answer
81 views

Write code for execution time on C# Command Line Application

I want to have my program execute a bunch of commands on load-time and this is in C# btw, but it's a console program, how can I do that?
3
votes
5answers
111 views

How much mail() function can be used in 30sec execution time?

I have to made a page which will send Email to Newsletter subscribers. There is more then 14000 subscriber. I want to use php mail() function to send Email to them. But I'm afraid …
0
votes
2answers
35 views

mysql execution time

Is there a way to get the execution time of the last executed query in mysql?
0
votes
3answers
37 views

php profiling: what results are normal?

As testing server, my computer (Windows 7, Amd Athlon X2, 1 GB RAM) is used. My application is based on Zend Framework. It uses MySQL and Zend_Translation, and Memcached as cache. …
0
votes
5answers
154 views

PHP Function execution cost table

There is a reference table that shows the execution cost of every php function? I know that the time execution is boundet to many factors and is impossible to determinate an uniqu …
6
votes
5answers
588 views

What is the best way to measure execution time of a function?

Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated. Any tips appreciated.