Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
7answers
942 views

Is there a Java bytecode optimizer that removes useless gotos?

Problem: I have a method that compiles to over 8000 bytes of Java bytecode. HotSpot has a magic limit that makes the JIT not kick in for methods that exceed 8000 bytes. (Yes, it is reasonable to have ...
10
votes
1answer
744 views

GCC, -O2, and bitfields - is this a bug or a feature?

Today I discovered alarming behavior when experimenting with bit fields. For the sake of discussion and simplicity, here's an example program: #include <stdio.h> struct Node { int a:16 ...
7
votes
4answers
6k views

HTML online minimizer/compressor?

Does anyone know of a good online generator to take the source code of an HTML page and compress/minimize the entire page. Meaning, compress/minimize all embedded CSS, JavaScript and obviously the ...
4
votes
2answers
201 views

Optimize SQL Query

I have problem with optimize this query: SET @SEARCH = "dokumentalne"; SELECT SQL_NO_CACHE `AA`.`version` AS `Version` , `AA`.`contents` AS `Contents` , `AA`.`idarticle` AS `AdressInSQL` , `AA` ...
3
votes
0answers
68 views

How good is the CLR optimizer? [closed]

I am a little bit disappointed in the CLR's optimizer. Suppose I have the following piece of code: int i = 0; for (int j = 0; j < 10; ++j) ++i; Console.WriteLine("{0}", i); It's clear that at ...
3
votes
1answer
74 views

Derby's subquery optimization issue

here is to follow my previous question on Derby. I finally got it to show me the execution plan for my query and intresting values came up: http://pastebin.com/wQAicPAV (SO parser goes crazy so i need ...
3
votes
6answers
727 views

Oracle 10 optimizer from RULE to COST: why?

Oracle decided to dismiss the rule-based optimizer from version 10g, leaving the cost-based one as the only choice. I think that a rule-based optimizer has the unvaluable positive side of being always ...
2
votes
3answers
39 views

How do I tell the MySQL Optimizer to use the index on a derived table?

Suppose you have a query like this... SELECT T.TaskID, T.TaskName, TAU.AssignedUsers FROM `tasks` T LEFT OUTER JOIN ( SELECT TaskID, GROUP_CONCAT(U.FirstName, ' ', U.LastName ...
2
votes
1answer
114 views

Javascript, CSS optimizer

Are there any analogues for Jammit or Juicer, but written on Python?
2
votes
2answers
151 views

Compiling C with optimization flag

I am comparing two assembly forms of two C files, one with an optimization flag (-O2), and the other without. My question is: Why is that in the optimized assembly version, the compiler puts the ...
2
votes
1answer
183 views

Looking for a CSS optimizer (php script or online services)

I'm looking for a css optimizer. It should be a php script so I can install on my host or online services. I need some feature like below. Any recommended? from: margin-top:5px; margin-right:10px; ...
2
votes
1answer
1k views

How to increase Oracle CBO cost estimation for hash joins, group by's and order by's without hints

It seems that on some of the servers that we have, the cost of hash joins, group by's and order by's is too low compared to the actual cost. I.e. often execution plans with index range scans ...
1
vote
0answers
51 views

Using Wordpress Shortcodes with Google Web Optimizer

I am attempting to use Google Web Optimizer (GWO) with Wordpress. I am using Wordpress 3.2.1. I have successfully installed the scripts and google validates this. This problem occurs when I attempt ...
1
vote
2answers
127 views

How will Oracle handle a where clause condition comparing against a subquery with a constant result?

Let's say I have the following: select primary_id from myschema.table_a where row_changed_date > ( select last_refreshed from myschema.last_refresh lr ...
1
vote
1answer
263 views

Is ASP.NET (webforms) Incompatible with Google Website Optimizer Multivariate Testing?

I've been stuggling all morning trying to get a multivariate test going in google website optimizer. I've copy and pasted the header/footer code into the pages, and setup a basic page section just to ...
1
vote
0answers
133 views

Query parser and optimizer for OSGi/LDAP filters/queries?

I'm looking for a query parser and optimizer that can work with OSGi filter conditions, which are based on LDAP query syntax. Preferably something implemented in Java, but a different implementation ...
1
vote
1answer
13 views

Can I get a regular page to redirect page in a subdirectory?

I want to be able to use a clean url to test in google optimizer.... can i create a file called geolocationtest.php so that http://neighborrow.com/geolocationtest.php will redirect to ...
1
vote
3answers
510 views

Oracle Anti-Join Execution plan question

We have two tables like so: Event id type ... a bunch of other columns ProcessedEvent event_id process There are indexes defined for Event(id) (PK) ProcessedEvent (event_id, ...
1
vote
4answers
172 views

What's the easiest way to expose a SQL interface to my application?

I'm working on an application which stores data in tables, similar to an RDBMS. I'm looking for a way to let my users query this data using SQL. Ideally, I'd like to do this without having to ...
1
vote
4answers
121 views

Is it possible to write a decent java optimizer if information is lost in the translation to bytecode?

It occurred to me that when you write a C program, the compiler knows the source and destination platform (for lack of a better term) and can optimize to the machine it is building code for. But in ...
0
votes
0answers
14 views

Conversion page setting up in Google Optimizer A/B test

I am setting up an A/B test for 2 sites. It is easy to choose original page link and variation page link, however, those 2 testing pages are not going to the same thank you page. So what should I put ...
0
votes
0answers
47 views

How do I install Zend Optimizer on an Amazon EC2 Linux AMI instance?

I have been trying for days. I am stumped. Can someone help me? I got html and php installed. But how do I get Zend Optimizer to work?
0
votes
2answers
105 views

Why does postgresql planner not use index scan instead of explicit sort within a stored function?

I have a function that executes a query with ORDER BY clause. When I call this function, postgres gets stuck, but when I execute the query with the values I pass to the function, it responds ...
0
votes
1answer
37 views

strange html file returned by web server

While working on a web crawler, I ran across this strange occurrence; the following is a snippet of the page content returned by the web server for http://nexgen.ae : < ! D O C T Y P E H T M L ...
0
votes
3answers
239 views

post decrement in while conditon in C

I've done a search and I’ve found nothing relevant to my query. I am currently debugging a C optimizer and the code in question looks like this: while( x-- ) array[x] = NULL; What should happen in ...
0
votes
1answer
138 views

Google Website Optimizer not tracking conversions

In a nutshell my split tests aren't tracking conversions at all. My A/B pages are on http://www.mydomain.com, and my conversion page is the last stage of my shopping cart on ...
0
votes
3answers
540 views

How does compiler optimize virtual methods implemented by a sealed class

I'm wondering how the following code is optimized. Specifically concerning virtual and direct calls. I have commented on how I think everything is optimized but those are just guesses. public ...
0
votes
7answers
242 views

Question about c# optimizer

If I write: SomeType simpleName = classWithLongName.otherLongName; And then use "simpleName" instead of "classWithLongName.otherLongName", will this change the program in any way (for instance ...