2
votes
3answers
96 views
In C++ how can I identify redundant #includes? [closed]
Possible Duplicate:
Header inclusion optimization
Hi,
I have a code base which has a lot of poor structure because of the way it was developed. Sadly I can't throw it away and start from …
3
votes
6answers
60 views
Best practice for a SQL Archiving Stored Procedure
I have a very large database (~100Gb) primarily consisting of two tables I want to reduce in size (both of which have approx. 50 million records). I have an archive DB set up on the same server with …
2
votes
2answers
34 views
mySQL ORDER optimizing
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 …
2
votes
7answers
48 views
tips for optimizing a read-only sql database
I have a mid-sized SQL Server 2008 database that has actuarial data in it. All of the use cases for it are read-only queries. Are there any special optimizations I should consider given this …
3
votes
6answers
186 views
Returning std::pair versus passing by non-const reference
Why is returning a std::pair or boost::tuple so much less efficient than returning by reference? In real codes that I've tested, setting data by non-const reference rather than by std::pair in an …
0
votes
1answer
25 views
Repeating functions in a MySQL query
Based on my previous question I am running a query like so:
SELECT DISTINCT DATE_FORMAT(STR_TO_DATE(`value`, '%d/%m/%Y'), '%M %Y') AS `avail`
FROM table
ORDER BY STR_TO_DATE(`value`, '%d/%m/%Y')
…
14
votes
21answers
969 views
How would you make this switch statement as fast as possible?
2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below!
The Question
Consider the following very harmless, very straightforward method, which uses a switch …
2
votes
4answers
195 views
Optimizing a pinhole camera rendering system
Hello,
I'm making a software rasterizer for school, and I'm using an unusual rendering method instead of traditional matrix calculations. It's based on a pinhole camera. I have a few points in 3D …
0
votes
3answers
27 views
SQL Database dilemma : Optimize for Querying or Writing?
I'm working on a personal project (Search engine) and have a bit of a dilemma.
At the moment it is optimized for writing data to the search index and significantly slow for search queries.
The DTA …
0
votes
0answers
14 views
How to use Squid(Proxy and reverse proxy) with joomla
hi
i want some optimization tips on joomla performance i used memcache but i dont now how to use proxy and reverse proxy () with joomla please help
Thanks
4
votes
2answers
245 views
Look what my Machine can do in 1 second [closed]
Inspired by The Sad Tragedy of Micro-Optimization Theater
People tend to spend quite a lot of time arguing over performance - without knowing that tasks like performing a block of code 10,000 times …
1
vote
2answers
86 views
Optimizing binary tree inserts to O(1) with hash map for write heavy trees
First of all I assume I've missed something major when thinking about this, but I still wanted to post about it to see if I really didn't miss anything, on with it...
I have a pretty write heavy …
-3
votes
2answers
81 views
Fastest / Cleanest Execution [closed]
I need to know for sure, as optimization is very important to me, in reference to a comment I posted here, which would produce the fastest execution in SQL Server.
Method 1:
DECLARE @val DECIMAL(8, …
3
votes
3answers
71 views
What’s the name of the problem that relates to optimizing closures on a stack-based system?
I remember hearing about a general optimization problem that relates to function closures, stating that in general it's difficult to optimize the creation of a closure using only stack-based memory …
0
votes
2answers
17 views
SQL speed SSRS optional fields
I'm returning results from the following query which is taking too long when running. I'm not sure how to eliminate the where parameters when they are not used in SSRS. All the @variables are strings
…
