1
vote
2answers
25 views
YSlow Best Practices with Django apps, How to implement them?
Hi,
I have an django 1.1.1 app, actually in developement, thinking in best practices I ran the YSlow test (Grade E Ruleset applied: YSlow V2 ) it recomends:
Grade F on Ad …
0
votes
4answers
22 views
Help understanding SQL Server 2005 execution plan
One of my stored procedure has long execution time (average around 4 to 7 minutes).
Now I trying to tweak it an make it run faster.
I am looking at execution plan and two things …
2
votes
10answers
187 views
How can I test the performance of a C function?
Are there some good ways to know how a function performs in C? I would like to, for example compare my own function to a library function.
1
vote
6answers
30 views
Slow ASP.NET app load times - Can I track/trace/time the whole load cycle?
Hey all.
The ASP.NET web app project I'm currently working on is getting slower over time to re-load (In IIS or the .NET dev server). Currently it takes:
1:28 minutes to load vi …
1
vote
3answers
38 views
does ordering by lot of columns hit the performance badly?
I just ran into a SQL query with about 5 different columns in the ORDER statement, is it a good practice and how does it play with performance?
3
votes
5answers
102 views
Performance difference in alternative switches in Python.
I have read a few articles around alternatives to the switch statement in Python. Mainly using dicts instead of lots of if's and elif's. However none really answer the question: is …
-2
votes
3answers
53 views
Speed of data access…
Which do you think would be faster:
A) Reading a file 512 bytes in length on a solid state drive in a directory of 1 billion files
B) Selecting a 512-byte column by unique indexe …
2
votes
7answers
133 views
Is it OK for a process to be CPU intensive for a prolonged period of time?
The case:
A scheduled task running on Windows.
The program's job is to extract some information from text documents. It uses a lot of regular expressions to do this. The program …
1
vote
9answers
447 views
How fast is Python?
I'm a Java programmer and if theres one thing I dislike about it, it would be speed. Java seems really slow, but a lot of the Python scriptsprograms I have written so far seem real …
0
votes
5answers
38 views
Why a View is loading very slow for the first time in a Prism composite wpf application
Displaying a View inside a Region is about 5-10 seconds slow for the first time, and UI freezes for that period in my Prism Composite WPF application. In subsequent times View is l …
0
votes
3answers
169 views
Improving the quick sort.
How can I improve the following quick sort(performance wise).Any suggestions?
void main()
{
quick(a,0,n-1);
}
void quick(int a[],int lower,int upper)
…
4
votes
1answer
138 views
Mysterious pointer-related multithreading slowdown
Background: So I'm working on a raytracer.. for my construction of the spatial partitioning scheme, I initially had some code like this:
if (msize <= 2) { // create a leaf node …
2
votes
5answers
209 views
What’s the most efficient way to compare two blocks of memory?
I need a comparison function for blocks of memory for doing binary searches on arrays of bytes in the D programming language. It does not need to have any useful semantics. It on …
4
votes
6answers
117 views
Why is PLSQL slower than SQL*Plus
I have several Oracle queries that perform well when run through SQL*PLUS. However when they are executed as a part of a PL/SQL package, they take MUCH longer.
Our DBA has watche …
2
votes
5answers
97 views
Problem having lots of databases?
We have built a hosted web application, that is developed in a way that each customer is connected to an individual database. This application is a web plattform/publishing system, …
