5
votes
7answers
235 views
Is object-oriented PHP slow?
I used to use procedural-style PHP. Later, I used to create some classes. Later, I learned Zend Framework and started to program in OOP style. Now my programs are based on my own f …
0
votes
4answers
160 views
How to increase PHP over HTML speed?
I have a PHP file that gets HTML from Memcached and serves it to user. When I test it like this:
ab -n 1000 -c 100 http://website.com/test.php
It does 22 requests per second. …
5
votes
2answers
248 views
Performance Implications of Comments in SQL Stored Procedures
Recently at my day-job were were instructed that any comments regarding our stored procedures MUST NOT exist inside the stored procedure and rather Extended Properties must be used …
0
votes
1answer
396 views
Performance of Oracle’s dbms_crypto.hash function for SHA-1
Looking for stats for input sizes of at least between 4 and 30 MB.
0
votes
3answers
74 views
Moving from Page A to Page B in Asp.Net. What is the “Best” way?
Hello,
I have a user on what we will call PageA.aspx. This user needs to get to PageB.aspx. The obvious way is have a hyperlink that simply sends them to PageB.aspx. That got m …
1
vote
3answers
950 views
How to limit SQL queries CPU utilization?
After a large SQL Query is run that is built through my ASPX Pages I see the following two items listed in sql profiler.
Event Class TextData …
1
vote
2answers
245 views
Using Linq with stored procedures
Hello,
I want to plan a data access layer and I thought to use Linq.
I read that linq has its problems with performance and that you could use stored procedures with linq.
Should …
