0
votes
5answers
85 views
+150
configuring e-tags
I am using Yslow as a simple speed benchmarking tool and I came across a really confusing concept. The E-tag
So the main problem is : How do I configure E-tags? my grade in yslow says:
There are 19 …
1
vote
3answers
30 views
Retrieve 2 last posts for each category.
Hello,
Lets say I have 2 tables: blog_posts and categories. Each blog post belongs to only ONE category, so there is basically a foreign key between the 2 tables here.
I would like to retrieve the 2 …
0
votes
1answer
17 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
0
votes
1answer
32 views
References on statemachine optimization and code generation?
As a follow-up to my state machines as a C++-like language extension question, I'd like some more help.
My compiler has been extended to parse my state machine extensions and now I'm beginning …
3
votes
2answers
113 views
+150
Algorithms for optimizing conjunctive normal form expressions for particular instruction sets?
I'm using Espresso to produce a minimized form of a set of boolean equations. However rather than generating logic for a programmable array logic (which is what Espresso is normally used for), I am …
-1
votes
4answers
135 views
is var x = new Stuff(); x.DoStuff(); faster than new Stuff().DoStuff(); ?
is var x = new Stuff(); x.DoStuff();faster than new Stuff().DoStuff(); ?
I'm not sure why but I noticed in my code that the first method makes it faster, anybody knows which one is faster and why ?
3
votes
11answers
345 views
Should I be concerned about .NET dictionary speed?
Hello, I will be creating a project that will use dictionary lookups and inserts quite a bit. Is this something to be concerned about?
Also, if I do benchmarking and such and it is really bad, then …
1
vote
1answer
47 views
ASP.NET:Monitor application performance
Hi Geeks,
I have an asp.net application which will be running in a webserver(Win 2003) for serving my intranet users.Now i want to monitor the performance of the application like memory management,un …
3
votes
5answers
157 views
How to determine if memory is aligned? ( *testing* for alignment, not aligning )
Hi there,
I am new to optimizing code with SSE/SSE2 instructions and until now I have not gotten very far. To my knowledge a common SSE-optimized function would look like this:
void sse_func(const …
27
votes
18answers
2k views
Python Performance - have you ever had to rewrite in something else?
Has anyone ever had code in Python, that turned out not to perform fast enough?
I mean, you were forced to choose another language because of it?
We are investigating using Python for a couple of …
4
votes
6answers
763 views
Is method A faster than method B?
This is a canonical question, meant only half-way as a joke. Hopefully, you'll find this before posting any question of the form:
Is something faster than something else?
Hopefully, the answers …
3
votes
5answers
63 views
css optimization
hello guys,
I noticed that digg.com and google.com are using kind of css optimization in their gif header image. for example digg uses this image http://digg.com/img/menu-current.gif .
can any one …
0
votes
1answer
33 views
Optimal key for MySQL / InnoDB table with multi-part WHERE
Given a (simplified) table
CREATE TABLE `transactions` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`CREATION_DT` datetime DEFAULT NULL,
`STATUS_IND` int(11) DEFAULT NULL,
`COMPANY_ID` …
0
votes
2answers
33 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')
…
81
votes
159answers
8k views
Biggest performance improvement you’ve had with the smallest change?
What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a factor of 10, just by …
