0
votes
2answers
35 views
execut jar file many times and analyse output
Hi,
I'd like to test which of two implementation in java of a problem is the fastest.
I've 2 jar files with the two implementation I can execute from the terminal. I want to execu …
8
votes
23answers
448 views
Java HashMap performance optimization / alternative
I want to create a large HashMap but the put() performance is not good enough. Any ideas?
Other data structure suggestions are welcome but I need the lookup feature of a Java Map: …
3
votes
10answers
267 views
Initialising arrays in C++
Everywhere I look there are people who argue vociferously that uninitialised variables are bad and I certainly agree and understand why - however; my question is, are there occasio …
0
votes
12answers
100 views
Select * vs Specifying Column Names [closed]
Possible Duplicate:
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
What are the performance differences between using SELECT * FROM SOMETABLE ver …
1
vote
7answers
67 views
SQL Server - bulk delete (truncate vs delete)
Hello folks,
We have a table with a 150+million records. We need to clear/delete all rows. Delete operation would take forever due to it writing to the t-logs and we cannot chang …
0
votes
4answers
66 views
Most important speed issues
I am participating in Al Zimmermann's Programming Contest.
http://www.azspcs.net/Contest/SonOfDarts
I have written a recursive algorithm but it takes a long time to run. I was …
2
votes
5answers
123 views
Fastest method to fill a database table with 10 Million rows
What is the fastest method to fill a database table with 10 Million rows? I'm asking about the technique but also about any specific database engine that would allow for a way to d …
6
votes
6answers
287 views
Regular expressions performance: Boost vs. Perl
I'm looking for a performance comparison between perl and boost regular expression.
I need to design a piece of code which relies very heavily on regular expressions, and can choos …
9
votes
15answers
865 views
I need high performance. Will there be a difference if I use C or C++?
I need to write a program (a project for university) that solves (approx) an NP-hard problem.
It is a variation of Linear ordering problems.
In general, I will have very large inpu …
1
vote
0answers
35 views
WMI Poor Performace
Hi
I wrote a code in C# that maps logical drives to their physical disks, using WMI (System.Management).
The code working perfectly, but slow like hell.
In my machine (Windows 7 x …
0
votes
2answers
26 views
Are multiple UIView animation callbacks a bad idea (i.e. cause mem issues)?
I have multiple UIView animations running in my app. They are very short, and then make callbacks to a method that then usually fires off another animation. This leads to a lot o …
0
votes
3answers
33 views
Monitoring dashboard for IIS and SQL Server
We have developed a .NET web application that uses SQL Server as a backend. Now we would like to provide a monitoring dashboard app for the tech support team. The idea is that this …
2
votes
2answers
53 views
What’s the fastest way to decompress JPEG images in C#
I need to write an app to playback a DICOM multiframe image. Each frame is stored in JPEG format. All the frames are stored consecutively in one file. Right now, I read out each …
0
votes
5answers
83 views
Database alternatives?
I was wondering the trade-offs for using databases and what the other options were? Also, what problems are not well suited for databases?
I'm concerned with Relational Databases. …
0
votes
8answers
201 views
How could running code in the debugger makes it faster?
The title says it all.
It never happened to me. In Visual Studio, I have a part of code that is executed 300 times, I time it every iteration with the performance counter, and the …
