Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
4answers
14k 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 communication? I'm talking ...
23
votes
2answers
13k 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?
20
votes
4answers
2k views

Memory layout of a .NET array

What is the memory layout of a .NET array? Take for instance this array: Int32[] x = new Int32[10]; I understand that the bulk of the array is like this: 0000111122223333444455556666777788889999 ...
19
votes
10answers
2k views

Import package.* vs import package.SpecificType

Would it suppose any difference regarding overhead to write an import loading all the types within one package (import java.*); than just a specific type (i.e. import java.lang.ClassLoader)? Would the ...
17
votes
10answers
1k views

What is “overhead”?

I am a student in Computer Science and I am hearing the word "overhead" a lot when it comes to programs and sorts. What does this mean exactly?
15
votes
5answers
970 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[10000]; for (int i ...
14
votes
7answers
491 views

C++ exception overhead

Why do embedded platform developers continuosly attempt to remove usage C++ exceptions from their SDKs? For example, Bada SDK suggests the following workaround for the exception usage, which looks ...
14
votes
10answers
3k views

How much overhead is there in calling a function in C++?

A lot of literature talks about using inline functions to "avoid the overhead of a function call". However I haven't seen quantifiable data. What is the actual overhead of a function call i.e. what ...
10
votes
4answers
232 views

Overhead in unused code

I am wondering what the overhead is of having unused functions in your code. Say for example you have some debug logging, and you then give most of your objects a ToString() function that is being ...
9
votes
3answers
139 views

What's the overhead of a data-less type?

I'm not wanting to start a flame war on micro-optimisation, but I am curious about something. What's the overhead in terms of memory and performance of creating instances of a type that has no ...
7
votes
4answers
293 views

Securely serving images

A respected colleague insists that storing images on my server is insecure, especially if the file structure is easy to surmise (as we have image galleries created by the users, the naming scheme is ...
7
votes
7answers
858 views

In what ways do C++ exceptions slow down code when there are no exceptions thown?

I have read that there is some overhead to using C++ exceptions for exception handling as opposed to, say, checking return values. I'm only talking about overhead that is incurred when no exception is ...
7
votes
6answers
608 views

What exactly do pointers store? (C++)

I know that pointers store the address of the value that they point to, but if you display the value of a pointer directly to the screen, you get a hexadecimal number. If the number is exactly what ...
6
votes
2answers
171 views

Overhead of using classes for matrix of algebraic structures in C++

I am using C++ to code some complicated FFT algorithm, so I need to implement such algebraic structures as quaternions and Hamilton-Eisenstein codes. Algorithm works with 2D array of that structures. ...
5
votes
2answers
94 views

WebSockets: useful for reducing overhead?

I am building a dynamic search (updated with every keystroke): my current scheme is to, at each keystroke, send a new AJAX request to the server and get data back in JSON. I considered opening a ...
5
votes
3answers
264 views

Does boost::bind cause overhead?

I am currently working on network software. It has one main class, server which obviously represents a server instance. A server instance can send requests and the user is notified of the response by ...
5
votes
5answers
1k views

Overhead of C++ inheritance with no virtual functions

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? class a { public: void ...
5
votes
14answers
2k views

Overhead of a switch statement in C

I'm a fairly competent Java programmer who's very new to C. I am trying to optimize a routine that has four modes of operation. I loop over all the pixels in an image and compute a new pixel value ...
4
votes
3answers
73 views

Overhead of HTML whitespace indentation

I noticed company that I work for uses spaces for html indentation. I started wondering what is the overall impact of using whitespaces to indent html documents. Why not simply use tabs to indent? ...
4
votes
5answers
252 views

Time measuring overhead in Java

When measuring elapsed time on a low level, I have the choice of using any of these: System.currentTimeMillis(); System.nanoTime(); Both methods are implemented native. Before digging into any C ...
4
votes
3answers
180 views

Cost of memory [de]allocation and potential compiler optimizations (c++)

Is the cost of memory [de]allocation specifically defined? If the cost depends upon the specific compiler being used, is there a general way memory [de]allocation is implemented such that I can ...
4
votes
3answers
150 views

java.util.Collection with the lowest overhead?

I'm calling a method in another API that accepts a java.util.Collection of objects. I've looked at the method and it immediately copies everything in the collection into a new ArrayList before ...
4
votes
2answers
118 views

mysql tables and deleting strategies

I'm working on a social network, like a subset of Facebook. I think this means that the application will be more read-heavy than write-heavy (i.e. more SELECTS than INSERTS, UPDATES, OR DELETES) I'm ...
4
votes
5answers
348 views

How Can I Minimize Overhead when Processing Messages in a Long Loop

I've got some long but simple loops in my Delphi program that may loop millions of times and take some seconds to execute. The code inside of the loop is very fast and has been optimized. It just ...
4
votes
2answers
79 views

How atomic *should* I make an Ajax form?

I have some web forms that I'm bringing over with AJAX, and as I was dealing with the database on the back end, I thought that it might be easier to just handle each input on the form atomically with ...
4
votes
6answers
405 views

Overhead from using Dependency Injection

Does dependency injection potentially cause large overhead? I would imagine so, especially if the resolver is called many times (which is quite likely looking at pattern examples)? Or am I thinking ...
4
votes
8answers
481 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 so that it executes ...
4
votes
7answers
243 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 advance.
4
votes
5answers
2k views

What is the overhead cost of an empty vector?

What is the memory overhead of having an empty vector vs having a pointer to a vector? Option A: std::vector<int> v; Option B: std::vector<int> *v = NULL; I believe that option B ...
3
votes
5answers
155 views

Java if vs. try/catch overhead

Is there any overhead in Java for using a try/catch block, as opposed to an if block (assuming that the enclosed code otherwise does not request so)? For example, take the following two simple ...
3
votes
1answer
57 views

repeat $() all over the place or declare once and reuse?

Using jQuery, if I am writing code like this $('blah').doSomething(); //bunch of code $('blah').doSomethingElse(); //bunch of code $('blah').doOtherStuff(); Is a new jQuery object being created ...
3
votes
4answers
236 views

at all times text encoded in UTF-8 will never give us more than a +50% file size of the same text encoded in UTF-16. true / false?

Somewhere I read (rephrased): If we compare a UTF-8 encoded file VS a UTF-16 encoded file, At some times, the UTF-8 file may give a 50% to 100% larger file size Am I right to say that the ...
3
votes
3answers
130 views

objective-c: is method calling inside a class still with selectors or pure calls?

I am comparing different programming languages and development platforms. One important difference between objective-c and other languages is that it uses selectors, messages, so calling objc_msgSend ...
3
votes
1answer
69 views

How expensive it is to load the environment to run a Python script?

I have a background python script that gets ran several thousand times a day. I'm simply running it with python foo.py. The script itself does some imports (a parsing library and sqlalchemy) and then ...
3
votes
1answer
264 views

What is the overhead of reflection in GetMethods

I just refactored a common piece of code in several parsers I have written. The code is used to automatically discover method implementations and it comes in quite handy to extend the existing parsers ...
3
votes
6answers
906 views

Is it a good practice to pass struct object as parameter to a function in c++?

I tried an example live below: typedef struct point { int x; int y; } point; void cp(point p) { cout<<p.x<<endl; cout<<p.y<<endl; } ...
3
votes
5answers
532 views

Java Memory Overhead

I would like to ask about Memory Overhead in java, I have a large ArrayList (61,770 items), and trying to calculate the amount of memory taken by each item (counting the object and its ArrayList ...
3
votes
14answers
974 views

Performance cost of coding “exception driven development” in Java?

Are there are any performance cost by creating, throwing and catching exceptions in Java? I am planing to add 'exception driven development' into a larger project. I would like to design my own ...
3
votes
2answers
535 views

memory overhead of pointers in c/c++

I'm on a 64bit platform, so all memory adrs are 8 bytes. So to get an estimate of the memory usage of an array, should I add 8 bytes to the sizeof(DATATYPE) for each entry in the array. Example: ...
3
votes
2answers
131 views

Internal Apache request to PHP script overhead

I have a PHP page that gets its content by making an HTTP request to another site on the same server, using file_get_contents. Both sites run in Apache 2 which calls PHP using suPHP (which is FastCGI, ...
3
votes
3answers
301 views

What bookkeeping data does a Delphi dynamic array contain?

Here's a simple program to check memory allocation. Checking before and after values with Task Manager suggests that each dynamic array takes up 20 bytes of memory at size = 1. The element size is ...
3
votes
1answer
612 views

Performance impact of gesture recognition in Delphi?

Delphi 2010 reportedly supports gestures for user interaction (mouse or touch interface), primarily through the Windows 7 gesture API. Will supporting gestures inherently incur a major performance ...
3
votes
4answers
584 views

Is there a way to enforce function inlining in c#?

As far as I know there's no way to hint the c# compiler to inline a particular function and I guess it's like that by design. I also think that not letting the programmer to specify what to inline ...
2
votes
4answers
97 views

Aren't automatic properties in C# causing ovehead?

When I have automatic propertie and I try to access it from within it's class, it seems like an overhead, because I use a function to access a member of my class instead of just accessing it ...
2
votes
2answers
156 views

ctypes vs C extension

I have a few functions written in C for a game project. These functions get called quite a lot (about 2000-4000 times per second). The functions are written in C for raw speed. Now, the easiest way ...
2
votes
2answers
73 views

Minimum cpu and memory overhead data structure for editing text?

I am creating a mind mapping application, and I was wondering what would be the best data structure for the "notes" editor. Notes might be just a few symbols, might be pages long, and are being ...
2
votes
5answers
139 views

Can function overhead slow down a program by a factor of 50x?

I have a code that I'm running for a project. It is O(N^2), where N is 200 for my case. There is an algorithm that turns this O(N^2) to O(N logN). This means that, with this new algorithm, it should ...
2
votes
5answers
176 views

Java logging API overhead

I've read a bit about the various ways of logging a debugging message with Java, and coming from a C background my concern is as follow : Those libraries claim minimal overhead in case where logging ...
2
votes
1answer
124 views

Spring annotations configuration looks like overhead

I just faced,that in order to use specific annotations for Spring Security, I should explicitely allow them in my config(applicationContext.xml) Example: <sec:global-method-security ...
2
votes
2answers
222 views

Bigger threadpool or additional ExecutorService when new kind of thread will run?

I have a question that is related to possible overhead of ExecutorServices in Java. The present implementation has ExecutorService A with a capacity of 5 threads. It runs threads of type A. type A ...

1 2