Search Results

10
votes

Speeding Up Python

Rather than just punting to C, I'd suggest: Make your code count. Do more with fewer executions of lines: Change the algorithm to a faster one. It doesn't need to be fancy to …
0
votes

Speeding Up Java

Here is an (older) document by Peter Sestoft which is worth reading: Performance in java. Some of the advice is p …
0
votes

what’s the best way to parse a body of text against multiple (15+) regexes on each line?

For a problem like this, I'd just close my eyes and use a Lexer+Parser generator. You can beat that with hand-optimization probably, but it is much easier to use a generator. Also, it is way more f …
0
votes

When is sql distinct faster than java programming ‘distinct’

SQL distinct is "heavy" because it has to eliminate multiple occurrences. This can be achieved by first sorting the data and then eliminate runs with equal elements. The heaviness relates to the fa …