active questions tagged perfomance - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T17:39:04Zhttp://stackoverflow.com/feeds/tag/perfomancehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1742871/how-to-get-good-perfomance-of-regex-in-java2How to get good perfomance of Regex in javaJaydeep2009-11-16T15:24:35Z2009-11-16T21:52:31Z
<p>Below is example of text:</p>
<pre><code>String id = "A:abc,X:def,F:xyz,A:jkl";
</code></pre>
<p>Below is regex:</p>
<pre><code>Pattern p = Pattern.compile("(.*,)?[AC]:[^:]+$");
if(p.matcher(id).matches()) {
System.out.println("Hello world!")
}
</code></pre>
<p>When executed above code should print Hello world!. </p>
<p>Does this regex can be modified to gain more performance?</p>
http://stackoverflow.com/questions/1651759/is-object-oriented-php-slow5Is object-oriented PHP slow?valya2009-10-30T19:11:18Z2009-10-31T17:25:37Z
<p>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 elements of cms, but without any design <em>in</em> framework), which is built on the top of the Zend Framework.</p>
<p>Now it consists of lots classes. But the more I program, more I'm afraid. I'm afraid that my program will be slow because of them I'm afraid to add every another one class which can help me to develop but can slow the application.</p>
<p>All I know is that including lots of files slows application (using eAccelerator + gathering all the code in one file can speed up application 20 times!), but I have no idea if creaing new classes and objects slows PHP by itself.</p>
<p>Does anyone have any information about it?</p>
http://stackoverflow.com/questions/1497136/how-to-increase-php-over-html-speed0How to increase PHP over HTML speed?tomaszs2009-09-30T09:54:13Z2009-10-14T21:16:58Z
<p>I have a PHP file that gets HTML from Memcached and serves it to user. When I test it like this:</p>
<blockquote>
<p>ab -n 1000 -c 100 <a href="http://website.com/test.php" rel="nofollow">http://website.com/test.php</a></p>
</blockquote>
<p>It does 22 requests per second. </p>
<p>But when I put the same HTML to a html file and do this test:</p>
<blockquote>
<p>ab -n 1000 -c 100 <a href="http://website.com/test.html" rel="nofollow">http://website.com/test.html</a></p>
</blockquote>
<p>I get like 4500 requests per second.</p>
<p>I need to stick to PHP because first time I need to generate HTML and next times I just get generated one from Memcached. And moreover HTML I display is different for every other user (recognized based on $_GET ['user_id'] value). Is there any way to make RPS higher? Closer to serving plain HTML?</p>
<p>I use as a server Lighttpd.</p>
http://stackoverflow.com/questions/697941/performance-implications-of-comments-in-sql-stored-procedures5Performance Implications of Comments in SQL Stored ProceduresMitchel Sellers2009-03-30T16:27:04Z2009-09-09T05:02:20Z
<p>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.</p>
<p>In the past we used something like this.</p>
<pre><code>/*
* NOTE: Auto-Generated Procedure DO NOT MODIFY
*/
CREATE PROCEDURE dbo.MyProc
AS
SELECT *
FROM MyTable
GO
</code></pre>
<p>This way anytime anyone opened the procedure in SSMS they would see the note, other comments also existed in procedures to document our process. Now I was not aware of any performance/memory issues with this. However we have individuals that insist it does.</p>
<p>I have not been able to find any documentation to prove or deny the existance of performance and/or memory issues with this type of comments.</p>
<p>So my question is, does anyone know of any documentation that can either prove or deny this?</p>
http://stackoverflow.com/questions/886593/performance-of-oracles-dbmscrypto-hash-function-for-sha-10Performance of Oracle's dbms_crypto.hash function for SHA-1Chry Cheng2009-05-20T07:24:55Z2009-06-23T19:07:36Z
<p>Looking for stats for input sizes of at least between 4 and 30 MB.</p>
http://stackoverflow.com/questions/855244/moving-from-page-a-to-page-b-in-asp-net-what-is-the-best-way0Moving from Page A to Page B in Asp.Net. What is the "Best" way?Craig2009-05-12T22:43:19Z2009-05-13T02:52:46Z
<p>Hello,</p>
<p>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 other ways to get between pages. One could use javascript to do a client side jump. There is also the seemingly bulky server side redirection. </p>
<p>What I would like to know is what, if any, are the performance hits between these different methods. I am going to assume the server side is a bit more heavy weight but by how much? Do these methods scale differently? Are there any hidden issues with doing it one way versus another?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/420554/how-to-limit-sql-queries-cpu-utilization1How to limit SQL queries CPU utilization?Samiksha2009-01-07T14:47:21Z2009-01-07T20:05:37Z
<p>After a large SQL Query is run that is built through my ASPX Pages I see the following two items listed in sql profiler.</p>
<pre><code> Event Class TextData ApplicationName CPU Reads Writes
SQL:BatchCompleted Select N'Testing Connection...' SQLAgent - Alert Engine 1609 0 0
SQL:BatchCompleted EXECUTE msdb.sbo.sp_sqlagent_get_perf_counters SQLAgent - Alert Engine 1609 96 0
</code></pre>
<p>These CPU is the same as the query so does that query actually take 1609*3=4827? </p>
<p>Same thing happens with case :</p>
<pre><code>Audit Logout
</code></pre>
<p><strong>Can I limit this?</strong> I am using sql server 2005.</p>
http://stackoverflow.com/questions/336649/using-linq-with-stored-procedures1Using Linq with stored proceduresOmri2008-12-03T09:39:20Z2008-12-03T09:48:22Z
<p>Hello,</p>
<p>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 procedures with linq when planning my data access layer? Is it crucial for the performance? When should I use them?
I know that stored procedures are essential for security but linq uses type safe queries so the only reason for stored procedures is performance.</p>
<p>Thanks,</p>
<p>Omri</p>