Tagged Questions

2
votes
4answers
133 views

How to get good perfomance of Regex in java

Below is example of text: String id = "A:abc,X:def,F:xyz,A:jkl"; Below is regex: Pattern p = Pattern.compile("(.*,)?[AC]:[^:]+$"); if(p.matcher(id).matches()) { System.out.println("Hello …
5
votes
7answers
292 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 framework (with …
0
votes
4answers
174 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. But when I put …
0
votes
1answer
467 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
78 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 me thinking about the …
5
votes
2answers
265 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. In the past we …
1
vote
3answers
1k 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
249 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 I use stored …