active questions tagged performance - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T11:10:29Zhttp://stackoverflow.com/feeds/tag/performancehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870313/gridview-vs-datalist-vs-repeater-vs-listview0GridView vs DataList vs Repeater vs ListViewMarco2009-12-08T22:24:47Z2009-12-10T08:41:45Z
<p>Hello all,</p>
<p>I have read some articles about this matter... and it seems that the Repeater is the one with best performance as explained in <a href="http://stackoverflow.com/questions/139207/repeater-listview-datalist-datagrid-gridview-which-to-choose">this other question</a>:</p>
<p>I know that the GridView is the heaviest of them all, and that it weights a lot in the ViewState. So the DataList has been the "best" option for some situations.</p>
<p>But how about Datalist performance vs ListView?</p>
<p>Also, the GridView has a Pager already built in... and it seems that the ListView has one to.
But if it create a pager for the DataList... will it become heavier than the GridView?
And how about DataList + Paging vs ListView with Paging?</p>
<p>Thx in advance.</p>
http://stackoverflow.com/questions/1879329/what-is-the-most-appropriate-performance-counter-type-for-measuring-operation-tim3What is the most appropriate performance counter type for measuring operation time?Hasan Khan2009-12-10T08:00:13Z2009-12-10T08:28:12Z
<p>Say I have a method Foo() and I want to measure the time in milliseconds it took to execute which type of Windows Performance Counter should I be using?</p>
<pre><code>var stopwatch = new Stopwatch();
stopwatch.Start();
Foo();
stopwatch.Stop();
counter.RawValue = stopwatch.TotalMilliseonds;
</code></pre>
<p>Currently I'm using NumberOfItems64 but that persists the last value of the counter unless the new operation is performed. Is it desirable? Or should the counter go to zero as soon as the operation is done? Which counter type would you choose in this situation and why?</p>
http://stackoverflow.com/questions/1876728/asp-net-control-vs-html-control-performance0ASP.Net Control vs HTML Control PerformanceMarco2009-12-09T20:39:32Z2009-12-10T08:02:21Z
<p>Hello</p>
<p>I have heard that we should avoid Default ASP.Net Controls, because they are heavy regarding Viewstate and etc...</p>
<p>So I was thinkink in using , , HTML tags whenever I want to only show information, and use the Eval function to insert server-side code in a href or src atribute.</p>
<p>But I have also heard that the Eval function is not the best performance solution, because it uses reflection to evaluate argument passed.</p>
<p>So I was planning in using explicit cast inside simple html tags.</p>
<p>Is this the best solution regarding performance? Do you have any other sugestion/opinion?</p>
http://stackoverflow.com/questions/1878598/asp-net-mvc-with-nhibernate-1asp.net mvc with nHibernate Pandiya Chendur2009-12-10T04:17:38Z2009-12-10T06:49:10Z
<p>Hai guys,</p>
<blockquote>
<p>I want to know few things about asp.net mvc with nHibernate</p>
</blockquote>
<ol>
<li>Is nHibernate the best ORM used with asp.net mvc?</li>
<li>If so, will nHibernate slow down the application?</li>
<li>What can be done to improve performance of asp.net mvc application with nHibernate?</li>
</ol>
http://stackoverflow.com/questions/989281/how-can-i-programmatically-limit-my-programs-cpu-usage-to-below-703How can I programmatically limit my program's CPU usage to below 70%?Nidhi2009-06-12T22:07:05Z2009-12-10T05:00:51Z
<p>Of late, I'm becoming more health oriented when constructing my program, I have observed that most of programs take 2 or 3 minutes to execute and when I check on the task scheduler, I see that they consume 100% of CPU usage, can I limit this usage programatically in code? This will certainly enable me to run multiple programs at a given time.</p>
<p>Thanks,
Nidhi</p>
http://stackoverflow.com/questions/1878599/removing-row-bottleneck-for-aggregated-data-for-oltp-database0removing row bottleneck for aggregated data for oltp databasemal2009-12-10T04:18:57Z2009-12-10T04:18:57Z
<p>In addition to inserting a new row into a table for each item of work being processed, an additional update is done to a separate row in a different table that contains some kind of summary data (e.g. totals) relating to a portion of the rows being inserted into the first table. This single row however can therefore become a bottleneck if multiple threads are processing an item of work that will update the same row in the table containing the summary data. What could be done to resolve this particular bottleneck? One thing I was thinking of was having the 'summary' table contain a number of rows instead of a single throw, and a particular thread updating that summary table would update a specific row relating to the summary data (e.g. based on the worker thread id/number) - the set of rows would then be aggregated when having to get the appropriate totals (which doesn't happen very often). As a simple example, take 2 tables</p>
<p>A (id: identity, value : integer)</p>
<p>B (aggregate1 : integer, aggregate2: integer, aggregate3: integer, aggregate4: integer)</p>
<p>So, I can insert multiple rows into A, but they could all update the same row in table B (although possible different columns in the same row). This particular row can therefore become a bottleneck.</p>
<p>What are possible ways to remove this row bottleneck?</p>
http://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop0Are there performance issue of using while loop vs foreach/for loop?Rachel2009-12-06T07:52:11Z2009-12-10T02:55:32Z
<p>What are the performance issue of using while loop v/s foreach/for loop or vice-versa ?</p>
<p>Also is it always preferable to use foreach loop v/s while in php ?</p>
http://stackoverflow.com/questions/1878207/openxml-sdk-v2-0-performance-issue-when-deleting-a-first-row-in-20-000-rows-exce0OpenXML sdk v2.0 Performance issue when deleting a first row in 20,000+ rows excel filePerpetual Learner2009-12-10T01:58:19Z2009-12-10T01:58:19Z
<p>Do anyone come across a performance issue when deleting a first row in a 20,000+ rows excel file using OpenXML sdk v2.0?</p>
<p>I am using the delete row coding suggested in the openxml sdk document. It tooks me serveral minutes just to delete the first row using openxml sdk, But it only takes just a second in excel applicaton.</p>
<p>I eventually found out that the bottle-neck is actually on the buble-up approach in dealing with row deletion. There are many row updating after the deleted row. So in my case, there are around 20,000 rows to be updated, shifting up the data row by row.</p>
<p>I wonder if there is any faster way to do the row deletion.</p>
<p>Do anybody have an idea?</p>
http://stackoverflow.com/questions/1875357/how-to-improve-performance-and-speed0How to Improve Performance and speed unknown (google)2009-12-09T17:08:13Z2009-12-10T01:48:18Z
<p>I have written this program for connecting and fetching the data into file, but this program is so slow in fetching . is there is any way to improve the performance and faster way to load the data into the file . iam targeting around 100,000 to million of records so thats why iam worried about performance and also can i use array fetch size and batch size as we can do in java. </p>
<pre><code>import java.sql as sql
import java.lang as lang
def main():
driver, url, user, passwd = ('oracle.jdbc.driver.OracleDriver','jdbc:oracle:thin:@localhost:1521:xe','odi_temp','odi_temp')
##### Register Driver
lang.Class.forName(driver)
##### Create a Connection Object
myCon = sql.DriverManager.getConnection(url, user, passwd)
f = open('c:/test_porgram.txt', 'w')
try:
##### Create a Statement
myStmt = myCon.createStatement()
##### Run a Select Query and get a Result Set
myRs = myStmt.executeQuery("select emp_id ,first_name,last_name,date_of_join from src_sales_12")
##### Loop over the Result Set and print the result in a file
while (myRs.next()):
print >> f , "%s,%s,%s,%s" %(myRs.getString("EMP_ID"),myRs.getString("FIRST_NAME"),myRs.getString("LAST_NAME"),myRs.getString("DATE_OF_JOIN") )
finally:
myCon.close()
f.close()
### Entry Point of the program
if __name__ == '__main__':
main()
</code></pre>
http://stackoverflow.com/questions/1877933/query-actual-execution-plan-very-different-from-trace-results1Query Actual Execution Plan VERY different from Trace resultswilloller2009-12-10T00:39:59Z2009-12-10T01:24:39Z
<p>I have rebuilt indexes and updated statistics.</p>
<p>The query is straightforward, with a subquery in the WHERE clause.</p>
<pre><code>SELECT TOP 1 * from MeetingPost_reg
WHERE userid = 1234 AND meetingpost_regid <> 9999
AND DateStart < (SELECT DateStart FROM MeetingPost_reg WHERE meetingpost_regid = 9999)
ORDER BY DateStart desc
</code></pre>
<p>There is an index on datastart, userid.
meetingpost_regid is the PK, with clustered index.</p>
<p>The Actual Execution Plan shows an Index Seek with 0 rows, and a Clustered Index Seek with 1 row, for a total Cost of ~ .0006, total CPU Cost ~ .002</p>
<p>The Trace shows a Duration of 250, CPU 172, Reads 11</p>
<p>Why is this query using so much CPU?</p>
http://stackoverflow.com/questions/1528879/sql-server-compare-index-performance0SQL Server: Compare Index Performancewilloller2009-10-07T00:25:02Z2009-12-10T00:46:00Z
<p>How can I compare the performance of an Index on a table using the Query Analyzer?</p>
<p>I would like to run the same query through the Estimated Execution Plan twice, once using the index and once without, and have a good comparison of the table scans/index scans that are generated.</p>
<p>I have tried CREATE INDEX..., SELECT..., DROP INDEX..., SELECT. I expect the first query to use the index and the second to have no index, but both execution plans will use the index.</p>
http://stackoverflow.com/questions/1874044/how-to-sortareasize-increase0how to sort_area_size increaseHaid2009-12-09T13:52:37Z2009-12-09T23:24:17Z
<p>how set sort_area_size in oracle 10g and what size should be as i have more than 2.2m rows in single table. and please tell me the suggested size of SORT_AREA_RETAINED_SIZE</p>
<p>as my queries are too much slow they takes more than 1 hours to complete. (mostly)
please suggest me the way by which i can optimize my queries and tune the database oracle 10g</p>
<p>thanks</p>
<p><hr></p>
<h2>updated with query</h2>
<p>the query is </p>
<pre><code>SELECT A.TITLE,C.TOWN_VILL U_R,F.CODE TOWN_CODE,F.CITY_TOWN_MAKE,A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE ,B.PRICES,
A.PROJECT_YY,A.PROJECT_MM,d.province ,D.BR_CODE BRANCH_CODE,D.STRATUM,L.LSM_GRP LSM,
SUM(GET_FRAC_FACTOR_ALL_PR_NEW(A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE,A.PROJECT_YY,A.PROJECT_MM,A.FRAC_CODE ,B.PRICES,A.QTY_USED,A.VERIF_CODE, A.PACKING_CODE, J.TYPE ,'R') )
* MAX(D.UNIVERSE) / MAX(E.SAMPLE) /1000000 MARKET , D.UNIVERSE ,E.SAMPLE
FROM A2_FOR_CPMARKETS A,
BRAND J,
PRICES B,CP_SAMPLE_ALL_MONTHS C ,
CP_LSM L,
HOUSEHOLD_GL D,
SAMPLE_CP_ALL_MONTHS E ,
City_Town_ALL F
WHERE A.PRD_CODE = B.PRD_CODE
AND A.BR_CODE = B.BR_CODE
AND DECODE(A.SIZE_CODE,NULL,'L',A.SIZE_CODE) = B.SIZE_CODE -- for unbranded loose
AND DECODE(B.VAR_CODE,'X','X',A.VAR_CODE) = B.VAR_CODE
AND DECODE(B.COL_CODE,'X','X',A.COL_CODE) = B.COL_CODE
AND DECODE(B.PACK_CODE,'X','X',A.PACKING_CODE) = B.PACK_CODE
AND A.project_yy||A.project_MM BETWEEN B.START_DATE AND B.END_DATE
AND A.PRD_CODE=J.PRD_CODE
AND A.BR_CODE=J.BR_CODE
AND A.FRM = C.FRM
AND A.PROJECT_YY=L.YEAR
AND A.frm=L.FORM_NO
AND C.TOWN_VILL= D.U_R
AND C.CLASS = D.CLASS
AND D.TOWN=F.GRP
AND D.TOWN = E.TOWN_CODE
AND A.PROJECT_YY = E.PROJECT_YY
AND A.PROJECT_MM = E.PROJECT_MM
AND A.PROJECT_YY = C.PROJECT_YY
AND A.PROJECT_MM = C.PROJECT_MM
-- FOR HOUSEJOLD_GL
AND A.PROJECT_YY = D.YEAR
AND A.PROJECT_MM = D.MONTH
-- END HOUSEHOLD_GL
AND C.TOWN_VILL = E.TOWN_VILL
AND C.CLASS = E.CLASS
AND C.TOWN_VILL = F.TOWN_VILL
AND C.TOWN_CODE=F.CODE
AND (DECODE(e.PROJECT_YY,'1997','1','1998','1','1999','1','2000','1','2001','1','2002','1','2') = F.TYP )
GROUP BY A.TITLE,C.TOWN_VILL,F.CODE ,F.CITY_TOWN_MAKE,A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE ,B.PRICES,
A.PROJECT_YY,A.PROJECT_MM,d.province,D.BR_CODE ,D.STRATUM,L.LSM_GRP ,
UNIVERSE ,E.SAMPLE
</code></pre>
<p>![alt text][1]</p>
<p>[1]: <a href="http://C" rel="nofollow">http://C</a>:\Documents and Settings\Hussain\My Documents\My Pictures\explain plan.jpg</p>
http://stackoverflow.com/questions/1875167/performance-profiling-on-linux3Performance profiling on LinuxWill2009-12-09T16:43:35Z2009-12-09T23:23:45Z
<p>What are the best tools for profiling C/C++ applications on *nix?</p>
<p>(I'm hoping to profile a server that is a mix of (blocking) file IO, epoll for network and fork()/execv() for some heavy lifting; but general help and more general tools are all also appreciated.)</p>
<p>Can you get the big system picture of RAM, CPU, network and disk all in one overview, and drill into it?</p>
<p>There's been a lot of talk on the <a href="http://lwn.net/Articles/357481/" rel="nofollow">kernel lists</a> about things like <a href="http://blog.fenrus.org/?p=5" rel="nofollow"><code>perf timechart</code></a>, but I haven't found anything turning up in Ubuntu yet.</p>
http://stackoverflow.com/questions/1877350/mysql-order-optimizing2mySQL ORDER optimizingTim Whitlock2009-12-09T22:24:04Z2009-12-09T22:29:52Z
<p>I have a query in which I am ordering a league table by a number of fields to handle the situation that some fields in the result may have the same value. I am curious as to why when subsequent fields aren't required for secondary ordering the query is still conciderably slower.</p>
<p>Case in point is a table of items that are voted on.
It contans a <code>total</code> field which is a cached value of <code>votes_up</code> minus <code>votes_down</code>. When querying a leaderboard (say top 10) if two totals are equal it then orders by <code>votes_up</code>. And finally if both are equal some other field could be used such as the primary key.</p>
<p>Here's an example table:</p>
<pre><code> CREATE TABLE `items` (
`id` int unsigned NOT NULL,
`votes_up` mediumint NOT NULL,
`votes_down` mediumint NOT NULL,
`total` mediumint NOT NULL,
PRIMARY KEY (`id`),
KEY `votes_up` (`votes_up`),
KEY `total` (`total`)
)
</code></pre>
<p>A basic top-ten query with ordering on one field is lightning fast; e.g:</p>
<pre><code>SELECT * FROM `items` ORDER BY `total` DESC LIMIT 10;
(0.00 secs)
</code></pre>
<p>Adding the votes_up field for secondary ordering slows it down considerably; e.g:</p>
<pre><code>SELECT * FROM `items` ORDER BY `total` DESC, `votes_up` DESC LIMIT 10;
(0.15 secs)
</code></pre>
<p>Adding a third, even the primary key slows it down further; e.g.:</p>
<pre><code>SELECT * FROM `items` ORDER BY `total` DESC, `votes_up` DESC, `id` DESC LIMIT 10;
(0.18 secs)
</code></pre>
<p>Is there any way to optimize this query so that when the <code>total</code> field values are all unique that the secondary ordering clauses are ignored and don't incur so much overhead?</p>
http://stackoverflow.com/questions/105504/is-there-any-performance-benefit-with-chaining-statements-in-net3Is there any performance benefit with "chaining" statements in .NET?Dillie-O2008-09-19T20:47:55Z2009-12-09T21:35:20Z
<p>When retrieving a lookup code value from a table, some folks do this...</p>
<pre><code>Dim dtLookupCode As New LookupCodeDataTable()
Dim taLookupCode AS New LookupCodeTableAdapter()
Dim strDescription As String
dtLookupCode = taLookupCode.GetDataByCodeAndValue("EmpStatus", "FULL")
strDescription = dtLookupCode.Item(0).Meaning
</code></pre>
<p>...however, I've also seen things done "chained" like this...</p>
<pre><code>strDescription = taLookupCode.GetDataByCodeAndValue("EmpStatus", "FULL").Item(0).Meaning
</code></pre>
<p>...which bypasses having a lookup code data table in the first place since the table adapter knows what the structure of its result set looks like.</p>
<p>Does using the "chained" method save the overhead of creating the data table object, or does it effectively get created anyway in order to properly handle the .Item(0).Meaning statement?</p>
http://stackoverflow.com/questions/1152541/is-it-better-to-use-exception-or-return-code-in-python8Is it better to use exception or return code in python?luc2009-07-20T09:18:45Z2009-12-09T21:20:02Z
<p>You may know this recommendation from Microsoft about the usage of exception in .NET:</p>
<blockquote>
<p>Performance Considerations</p>
<p>... </p>
<p>Throw exceptions only for
extraordinary conditions, ...</p>
<p>In addition, do not throw an exception
when a return code is sufficient...</p>
</blockquote>
<p>(See the whole text at <a href="http://msdn.microsoft.com/en-us/library/system.exception.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.exception.aspx</a>)</p>
<p>As a point of comparison, would you recommend the same for Python code? </p>
http://stackoverflow.com/questions/178973/how-fast-is-a-log4net-logging-method-debug-info-etc1How fast is a log4net logging method (Debug, Info, etc)?casademora2008-10-07T15:17:35Z2009-12-09T19:23:01Z
<p>I'm a big fan of <a href="http://logging.apache.org/log4net" rel="nofollow">log4net</a>, but recently, some (in my department) have questioned its inclusion in our projects because of the seemingly heaviness of each logging method. I would argue that there are better techniques than others, but that's another question.</p>
<p>I'm curious to know, what is the typical impact of a log4net DebugFormat-type call on your applications. I'm going to leave out variables like number of log statements per lines of code, etc, because I'm just looking for anything that you've seen in the real world.</p>
<p>And, I am aware of the simple technique of adding a guard clause to long evaluation statements eg:</p>
<pre><code>if (log.IsDebug)
{
log.DebugFormat(...);
}
</code></pre>
<p>So, let's exclude that from consideration for now.</p>
http://stackoverflow.com/questions/1875783/is-mpi-good-for-high-volume-soft-realtime-ipc0Is MPI good for high-volume soft-realtime IPC ? Hassan Syed2009-12-09T18:18:36Z2009-12-09T18:56:23Z
<p>If I had a single server and I had two process types A(Many processes many threads) and B(one process n-threads with n-cpu's), and I wanted to send a LARGE amount of one-way messages from A to B. Is MPI a better implementation for this than a custom implementation using:</p>
<ol>
<li>Unix Domain Sockets</li>
<li>Windows Named Pipes</li>
<li>Shared Memory</li>
</ol>
<p>I was thinking of writing my own library based on 1 and 2, and I am also wondering if 3 is better since the shared memory would require locking.</p>
<p>Process A provides external services so B's resource usage and the message passing in general needs to consume as little resources as possible, and A could be implemented in both blocking or non-blocking when it sends messages. Resource usage of B and the message passing needs to scale linearly with A's usage.</p>
<p>I eventually need broadcasting capability between machines as well. Probably for process B. </p>
<p>My parting question is: is MPI (openMPI in particular) a good library for this, and does it use the most optimal kernel primitives on various operating systems.</p>
http://stackoverflow.com/questions/1875455/is-it-possible-to-change-the-priority-of-garbage-collector-thread0Is it possible to change the priority of garbage Collector thread?DKSRathore2009-12-09T17:20:35Z2009-12-09T18:30:48Z
<p>Java garbage collector runs with priority 1, due to which it is not guaranteed that System.gc() will actually execute if called. </p>
<p>Is there any way to change its priority? This shall enable me to run if I want.</p>
http://stackoverflow.com/questions/1875126/any-idea-why-contains-querys-so-slow-in-sql-server-20050Any idea why contains(...) querys so slow in SQL Server 2005rwarren2009-12-09T16:36:47Z2009-12-09T16:56:57Z
<p>I've got a simple select query which executes in under 1 second normally, but when I add in a contains(column, 'text') into the where clause, suddenly it's running for 20 seconds up to a minute. The table it's selecting from has around 208k rows.</p>
<p>Any ideas what would cause this query to run so slow with just the addition of the contains clause?</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi37Fastest way to get value of piChris Jester-Young2008-08-01T05:21:22Z2009-12-09T15:51:40Z
<p>Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using <code>#define</code>d constants like <code>M_PI</code>, or hard-coding the number in.</p>
<p>The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable; I've included it as a baseline to compare the other versions against. In my tests, with built-ins, the <code>4 * atan(1)</code> version is fastest on GCC 4.2, because it auto-folds the <code>atan(1)</code> into a constant. With <code>-fno-builtin</code> specified, the <code>atan2(0, -1)</code> version is fastest.</p>
<p>Here's the main testing program (<code>pitimes.c</code>):</p>
<pre><code>#include <math.h>
#include <stdio.h>
#include <time.h>
#define ITERS 10000000
#define TESTWITH(x) { \
diff = 0.0; \
time1 = clock(); \
for (i = 0; i < ITERS; ++i) \
diff += (x) - M_PI; \
time2 = clock(); \
printf("%s\t=> %e, time => %f\n", #x, diff, diffclock(time2, time1)); \
}
static inline double
diffclock(clock_t time1, clock_t time0)
{
return (double) (time1 - time0) / CLOCKS_PER_SEC;
}
int
main()
{
int i;
clock_t time1, time2;
double diff;
/* Warmup. The atan2 case catches GCC's atan folding (which would
* optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin
* is not used. */
TESTWITH(4 * atan(1))
TESTWITH(4 * atan2(1, 1))
#if defined(__GNUC__) && (defined(__i386__) || defined(__amd64__))
extern double fldpi();
TESTWITH(fldpi())
#endif
/* Actual tests start here. */
TESTWITH(atan2(0, -1))
TESTWITH(acos(-1))
TESTWITH(2 * asin(1))
TESTWITH(4 * atan2(1, 1))
TESTWITH(4 * atan(1))
return 0;
}
</code></pre>
<p>And the inline assembly stuff (<code>fldpi.c</code>), noting that it will only work for x86 and x64 systems:</p>
<pre><code>double
fldpi()
{
double pi;
asm("fldpi" : "=t" (pi));
return pi;
}
</code></pre>
<p>And a build script that builds all the configurations I'm testing (<code>build.sh</code>):</p>
<pre><code>#!/bin/sh
gcc -O3 -Wall -c -m32 -o fldpi-32.o fldpi.c
gcc -O3 -Wall -c -m64 -o fldpi-64.o fldpi.c
gcc -O3 -Wall -ffast-math -m32 -o pitimes1-32 pitimes.c fldpi-32.o
gcc -O3 -Wall -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm
gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm
gcc -O3 -Wall -ffast-math -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm
gcc -O3 -Wall -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm
gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm
</code></pre>
<p>Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too, because the optimisations are different), I've also tried switching the order of the tests around. The <code>atan2(0, -1)</code> version still comes out top every time, though.</p>
<p>I'm keen to hear what results you have, as well as improvements to the testing process. :-)</p>
http://stackoverflow.com/questions/1859123/c-cli-performance-gain1C++/CLI performance gainGuillermo Prandi2009-12-07T10:24:35Z2009-12-09T15:38:15Z
<p>I started long ago with plain C, then moved to C++ and now I'm facing C++/CLI. As a performance freak, I'm always trying to squeeze the last drop of performance to every line of code. I'm currently in a project that makes sense to be done mostly in VB.Net (simplicity, resource availability, etc.), but has a few points that are very performance sensitive and I was planning to do those parts in C++/CLI. However, only a tiny portion of it can be taken out from managed code, while the rest needs to be kept managed. The question is, is there any performance gain to be expected by writing a C++/CLI managed function comparing to C# or VB.Net? From what I could understand from the docs I've been reading, the only advantage seems to be that managed/unmanaged thunking is lighter. Is that the case? Because I can't even seem able to store handles in unmanaged arrays or structures (which I could manipulate faster), like:</p>
<pre><code>String ^ mystr = "Oh, my!";
Object ^ myarray[10];
myarray[0] = mystr; // Can't event be casted to void*, int, HANDLE...
// (however, handles do have a sizeof() == 4 in Win32)
// (I don't expect the handle to behave like a pointer; just stay as handle)
</code></pre>
http://stackoverflow.com/questions/1870343/performance-and-foreach-loop-in-net0Performance and foreach loop in .NETJagd2009-12-08T22:31:08Z2009-12-09T12:38:47Z
<p>I have the following click event.</p>
<pre><code>protected void btnUpdate_Click(object sender, EventArgs e) {
foreach (GridViewRow gvr in gvEditBulletins.Rows) {
RadEditor re = (RadEditor)gvr.FindControl("reBulletin");
DropDownList ddl = (DropDownList)gvr.FindControl("ddlPosition");
// Business logic
}
}
</code></pre>
<p>Do I suffer a performance hit since I'm declaring an instance of the RadEditor and DropDownList with every iteration, or is the compiler smart enough to know to reuse the instances?</p>
http://stackoverflow.com/questions/1526675/mouseover-hover-effect-slow-on-ie83Mouseover/hover effect slow on IE8Bobmoff2009-10-06T16:30:28Z2009-12-09T10:23:12Z
<p>I have noticed a weird performance thing in IE8 when using mouseover events on a table with many rows (100 in this example). I have tried a lot of different approaches but I can't seem to find any way to get it as fast as I like/need.</p>
<p>If I switch classes on each event the performance goes down in all IE versions, and If I use direct manipulation of the CSS through javascript IE6 and IE7 speeds up alot, but IE8 still performs lousy.</p>
<p>Any ideas ? I would really like to know what it is that makes the mouseover event to perform so sluggish compared to all the other browsers. </p>
<p>If this only happened to IE6 I could understand and let it pass, but when the newest version of the browser is the slowest one, there is only going to be more and more users with a bad experience.</p>
<p>Example using JQuery hover: <a href="http://thedungheap.net/research/" rel="nofollow">http://thedungheap.net/research/</a></p>
<p><b>EDIT:</b> I have now updated the example so that it is easy to see the difference between having 10 rows and 200. This is in the same document, so this cannot be a problem with the whole DOM size, i guess</p>
http://stackoverflow.com/questions/651264/does-socaseinsensitive-greatly-impact-performance-for-a-tdxmemindex-on-a-tdxmemda0Does soCaseInsensitive greatly impact performance for a TdxMemIndex on a TdxMemDataset?Jim McKeeth2009-03-16T16:59:44Z2009-12-09T09:46:45Z
<p>I am adding some indexes to my DevExpress <strong>TdxMemDataset</strong> to improve performance. The <strong>TdxMemIndex</strong> has <em>SortOptions</em> which include the option for <em>soCaseInsensitive</em>. My data is usually a GUID string, so it is not case sensitive. I am wondering if I am better off just forcing all the data to the same case or if the <em>soCaseInsensitive</em> flag and using the <em>loCaseInsensitive</em> flag with the call to Locate has only a minor performance penalty (roughly equal to converting the case of my string every time I need to use the index). </p>
<p>At this point I am leaving the CaseInsentive off and just converting case.</p>
http://stackoverflow.com/questions/1872569/is-there-a-performance-difference-between-linqs-query-expression-and-dot-notation0Is there a performance Difference between Linqs Query Expression and Dot Notation?Luke1012009-12-09T09:15:26Z2009-12-09T09:18:13Z
<p>I am reading up on Linq and the author uses both query expressions and dot notation. He says that the query expression is translated to the dot notation. So is it true that dot notation is faster?</p>
http://stackoverflow.com/questions/1389769/wpf-virtualizingstackpanel-for-increased-performance3WPF VirtualizingStackPanel for increased performancebluebit2009-09-07T14:55:04Z2009-12-09T08:30:08Z
<p>I would like a simple description of how to implement a virtualizingstackpanel for an ItemsControl that is databound to an observable collection in my MVVM. </p>
<p>I have an ItemsControl instance for each tab in a tab control, and switching tabs becomes VERY slow when the ItemsControl grows larger. </p>
<p>What can I do to speed up the app?</p>
<p>I opened up a WPF profiler and saw that each element (which is a custom user control) displayed in my ItemsControl of each tab had its own ContentPresenter. So I essentially had 100 content presenters all running for 100 items in my observablecollection in MVVM. Is this corrrect? How can I optimize?</p>
http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements4Modeling distribution of performance measurementspeterchen2009-12-08T14:45:23Z2009-12-09T06:24:53Z
<p>How would you mathematically model the distribution of repeated real life performance measurements - "Real life" meaning you are not just looping over the code in question, but it is just a short snippet within a large application running in a typical user scenario?</p>
<p>My experience shows that you usually have a peak around the average execution time that can be modeled adequately with a Gaussian distribution. In addition, there's a "long tail" containing outliers - often with a multiple of the average time. (The behavior is understandable considering the factors contributing to first execution penalty). </p>
<p><strong>My goal</strong> is to model aggregate values that reasonably reflect this, and can be calculated from aggregate values (like for the Gaussian, calculate mu and sigma from N, sum of values and sum of squares). In other terms, number of repetitions is unlimited, but memory and calculation requirements should be minimized. </p>
<p>A normal Gaussian distribution can't model the long tail appropriately and will have the average biased strongly even by a very small percentage of outliers. </p>
<p><strong>I am looking for</strong> ideas, especially if this has been attempted/analysed before. I've checked various distributions models, and I think I could work out something, but my statistics is rusty and I might end up with an overblown solution. Oh, a complete shrink-wrapped solution would be fine, too ;) </p>
<p><strong>Other aspects / ideas:</strong> Sometimes you get "two humps" distributions, which would be acceptable in my scenario with a single mu/sigma covering both, but ideally would be identified separately. </p>
<p>Extrapolating this, another approach would be a "floating probability density calculation" that uses only a limited buffer and adjusts automatically to the range (due to the long tail, bins may not be spaced evenly) - haven't found anything, but with some assumptions about the distribution it should be possible in principle.</p>
<p><hr></p>
<p><strong>Why</strong> (since it was asked) - </p>
<p>For a complex process we need to make guarantees such as "only 0.1% of runs exceed a limit of 3 seconds, and the average processing time is 2.8 seconds". The eprformance of an isolated piece of code can be very different from a normal run-time environment involving varying levels of disk and network access, background services, scheduled events that occur within a day, etc. </p>
<p>This can be solved trivially by accumulating <em>all</em> data. However, to accumulate this data in production, the data produced needs to be limited. For isolated analysis, a gaussian deviation is ok (with some tuning). That doesn't work anymore for the distributions found above. </p>
http://stackoverflow.com/questions/1851361/why-is-scaling-down-a-uiimage-from-the-camera-so-slow4Why is scaling down a UIImage from the camera so slow?David Maymudes2009-12-05T06:34:03Z2009-12-09T04:44:43Z
<p>resizing a camera UIImage returned by the UIImagePickerController takes a ridiculously long time if you do it the usual way as in <a href="http://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more">this post</a>.</p>
<p>Yes, it's a lot of pixels, but the graphics hardware on the iPhone is perfectly capable of drawing lots of 1024x1024 textured quads onto the screen in 1/60th of a second, so there really should be a way of resizing a 2048x1536 image down to 640x480 in a lot less than 1.5 seconds.</p>
<p>So why is it so slow? Is the underlying image data the OS returns from the picker somehow not ready to be drawn, so that it has to be swizzled in some fashion that the GPU can't help with?</p>
<p>As far as I know, the iPhone doesn't have any dedicated "graphics" memory, so there shouldn't be a question of moving the image data from one place to another.</p>
<p>So, the question: is there some alternative drawing method besides just using CGBitmapContextCreate and CGContextDrawImage that takes more advantage of the GPU?</p>
<p>Something to investigate: if I start with a UIImage of the same size that's not from the image picker, is it just as slow? Apparently not...</p>
<p>Update: Matt Long found that it only takes 30ms to resize the image you get back from the picker in <code>[info objectForKey:@"UIImagePickerControllerEditedImage"]</code>, if you've enabled cropping with the manual camera controls. That isn't helpful for the case I care about where I'm using <code>takePicture</code> to take pictures programmatically. I see that that the edited image is <code>kCGImageAlphaPremultipliedFirst</code> but the original image is <code>kCGImageAlphaNoneSkipFirst</code>. </p>
<p>Further update: Jason Crawford suggested <code>CGContextSetInterpolationQuality(context, kCGInterpolationLow)</code>, which does in fact cut the time from about 1.5 sec to 1.3 sec, at a cost in image quality--but that's still far from the speed the GPU should be capable of!</p>
http://stackoverflow.com/questions/1869043/alternatives-to-using-session-variables-in-asp-net-including-mvc1Alternatives to using session variables in ASP.NET (including MVC)jamauss2009-12-08T18:48:11Z2009-12-09T02:23:40Z
<p>I apologize if this has been asked before, but I haven't quite found the specific question I have in my head.</p>
<p>For the website I am building (using ASP.NET MVC) - performance is an important feature. Also, there is a chance that the site could be hosted in an environment where the Application Pool gets recycled every 20 minutes (or sooner if the memory threshold is reached). I would like to be completely independent of relying on session variables and instead, store a GUID-like value in a cookie. My reasoning is - I don't know how long the session will last because of the AppPool recycling and don't want their session to timeout prematurely and cause them to have to login repeatedly.</p>
<p>The GUID value in the cookie would act as a lookup key to a table where I store session-like information (a user ID value, etc.). So if I needed that data I could retrieve it from the database. I would still make use of the Session_OnEnd event to clear out that session table of rows with a "last activity" value of more than 20 minutes old (or however long sessions are configured to last). So I guess I would still be using session state, just not session variables.</p>
<p>My concern though, again, is about performance. Therefore, I was curious if there are any better methods for avoiding use of session variables while still maintaining the ability to know things about who the user is and manage their visits to the site in a "session-like" way. I am still a newbie to MVC but have plenty of experience in ASP.NET over the years so, I hope my question makes sense!</p>
<p>EDIT: I'm kind of shying away from wanting to use SQL Session State because I will likely be in a shared sql server hosting environment and don't think I will have a login with the ability to create/run jobs if necessary for deletion of expired sql session data, etc. Are there any real drawbacks to depending on Session_OnEnd with a cookie in the AppPool recycling scenario? Could Session_OnEnd not execute for sessions that are current when the AppPool recycles?</p>