-2
votes
3answers
56 views
Speed of data access…
Which do you think would be faster:
A) Reading a file 512 bytes in length on a solid state drive in a directory of 1 billion files
B) Selecting a 512-byte column by unique indexe …
3
votes
2answers
68 views
.NET Benchmarking Guidelines
I'm interested in learning the best practices for benchmarking in .NET. What are the guidelines for setting up a valid benchmark test? How does one determine that their test is goo …
0
votes
5answers
78 views
Benchmarking method calls in C#
I'm looking for a way to benchmark method calls in C#.
I have coded a data structure for university assignment, and just came up with a way to optimize a bit, but in a way that w …
6
votes
4answers
193 views
C#: Is this benchmarking class accurate?
I created a simple class to benchmark some methods of mine. But is it accurate? I am kind of new to benchmarking, timing, et cetera, so thought I could ask for some feedback here. …
2
votes
1answer
54 views
Ruby Benchmark module: meanings of “user”, “system”, and “real”?
Experimenting with Ruby's Benchmark module...
>> Benchmark.bm(7) { |b| b.report('Report:') { s = '' ; 10000.times { s += 'a' } } }
user system total …
0
votes
2answers
90 views
Is there any simple way to benchmark python script?
Usually I use shell command time. My purpose is to test if data is small, medium, large or very large set, how much time and memory usage will be.
Any tools for linux or just pyth …
1
vote
1answer
22 views
gwt application logging, profiling, benchmarking
Is there a good methodology for logging/benchmarking/profiling a gwt application to identify bottlenecks?
Something like a timing/logging framework or similar.
0
votes
5answers
126 views
How to calculate computer speed
I have a high-speed ADC data capture/analysis program which performs poorly on older computers. This was discovered in beta testing in my customer's lab when one test engineer repo …
2
votes
2answers
176 views
Writing a time function in Haskell
I'm new to Haskell and I'd like to be able to time the runtime of a given function call or snippet of code.
In Clojure I can use 'time':
user=> (time (apply * (range 2 10000)) …
22
votes
21answers
3k views
How much faster is C++ than C#?
Or is it now the other way around?
From what I've heard there are some areas in which C# proves to be faster than C++, but I've never had the guts to test it by myself.
Thought a …
6
votes
4answers
236 views
HTTPS vs HTTP speed comparison
I'm considered running my entire e-commerce website under https. I decided to run a crude benchmark to measure the download time of a 156KB image through https vs http because I ha …
-2
votes
4answers
122 views
web programming language benchmarks?
I'm thinking that as more and more programming moves to the web with similar and a variety of tools and techniques, has anyone come up with a good set of benchmarks for a programmi …
0
votes
0answers
22 views
Trouble deciphering Autobench output
I'm trying to benchmark a simple webserver I wrote, but I'm having trouble deciphering what Autobench has outputted. I've been googling all over for help on this (even going throu …
1
vote
3answers
131 views
High-Performance Timer vs StopWatch
Does anyone know if the HiPerfTimer or the StopWatch class is better for benchmarking, and why?
1
vote
3answers
195 views
Why are two Java threads (in some cases) more than twice as fast as one?
File: Example1.java
public class Example1 implements Runnable {
public void run() {
for(int i = 0; i < 100000000; i++) {
int x = 5;
x = x * 4;
x = x …
