0
votes
5answers
58 views
How can I get a generic list from a datatable with the lowest overhead?
I'm looking for best practices here. Sorry. I know it's subjective, but there are a lot of smart people here, so there ought to be some "very good" ways of doing this.
I have a c …
2
votes
4answers
152 views
Overhead of a Round-trip to MySql?
So I've been building django applications for a while now, and drinking the cool-aid and all: only using the ORM and never writing custom SQL.
The main page of the site (the prima …
8
votes
4answers
2k views
How much overhead does SSL impose?
I know there's no single hard-and-fast answer, but is there a generic order-of-magnitude estimate approximation for the encryption overhead of SSL versus unencrypted socket communi …
1
vote
3answers
647 views
In MySQL what does “Overhead” mean, what is bad about it, and how to fix it?
simple question, but its been nagging me for a while now....
what is "overhead" in MySQL, and should i be worried?
does clicking "optimize table" fix it for real?
0
votes
3answers
282 views
Getting an index in a Java “foreach” loop [closed]
Possible Duplicate:
Reference to the iteration number in Java’s foreach
Hey Guys -
I recently (don't laugh at me) came across the Java syntax that makes a for loop …
0
votes
2answers
72 views
Java: Expected overhead of the rmi protocol
Hi there!
Within my program I'm using two RMI servers, which provide different methods, to simulate a simple network protocol between two notebooks. From my trace log I can see th …
10
votes
5answers
394 views
Overhead of a .NET array?
I was trying to determine the overhead of the header on a .NET array (in a 32-bit process) using this code:
long bytes1 = GC.GetTotalMemory(false);
object[] array = new object[100 …
1
vote
6answers
395 views
OpenMP - terrible performance - a simple issue of overhead, or is there a program flaw? (C)
I have here what I understand to be a relatively simple OpenMP construct. The issue is that the program runs about 100-300x faster with 1 thread when compared to 2 threads. 87% o …
1
vote
5answers
204 views
What is the processing overhead of length() in REXX?
How does the processing overhead of the length() function in REXX change with the length of the string?
Update: I'm using:
uni-REXX (R) Version 297t
Open-REXX
(TM) Copyright ( …
4
votes
8answers
173 views
Overhead due to use of Events
I have a custom thread pool class, that creates some threads that each wait on their own event (signal). When a new job is added to the thread pool, it wakes the first free thread …
2
votes
1answer
180 views
Overhead with PPP and Ethernet
What is the overhead for PPP and Ethernet sending 5000 bytes?
Frame size for Point-to-Point Protocol: 8 bytes
MTU: 500 bytes
Frame size for Ethernet: 18 bytes
MTU: 1500 bytes
Bo …
-1
votes
4answers
107 views
PHP IF Statement Evaluation & Server Overhead
I'm curious what the impact on the server is when PHP if statements are evaluated, i.e. memory consumption and CPU usage and if this could become a major issue as traffic grows?
F …
0
votes
1answer
58 views
How much table overhead is too much?
I just saw in phpMyAdmin that one of our MySQL tables is 14MB in size, but has 10MB overhead. I'm guessing this is a lot!
How much is too much? Should I run OPTIMIZE TABLE regular …
4
votes
5answers
374 views
Overhead of C++ inheritance with no virtual functions
Hi,
In C++, what's the overhead (memory/cpu) associated with inheriting a base class that has no virtual functions? Is it as good as a straight up copy+paste of class members?
cl …
4
votes
7answers
175 views
Struct’s contribution to type size
I am wondering why the following two types
struct {
double re[2];
};
and
double re[2];
have the same size in C? Doesn't struct add a bit of size overhead?
Thank you in …
