0
votes
1answer
82 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, JavScript and obviously the …
1
vote
4answers
115 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 …
2
votes
1answer
253 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 …
11
votes
7answers
419 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 …
0
votes
3answers
198 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
155 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 …
1
vote
4answers
93 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 …
2
votes
6answers
425 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 …
