Overhead is any combination of excess or indirect computation time, memory, bandwidth, or other resources that are required to attain a particular goal.
1
vote
2answers
30 views
Multiple SQL queries checking against 1 row vs 1 single query checking against multiple rows
I am curious, what has a better performance. A little bit about the context : I am processing a CSV file that needs to be entered into a database table and need to ensure that I smell out the ...
0
votes
1answer
59 views
Android performance getJSONObject while parsing
I'm currently parsing JSON and got the following piece of code:
boolean suf = list.getJSONObject(i).getBoolean("sufficient");
String grade = list.getJSONObject(i).getString("grade");
String id= ...
1
vote
1answer
74 views
Overhead for “rich type” struct in C++
I'd like keep track of what is essentially "type" information at compile time for a few functions which currently take arguments of the same type. Here's an example; Say I have two functions ...
0
votes
0answers
40 views
+50
Amazon SDB Columns VS Rows in Relation to Bandwidth and Delay
We're making an SDB Domain with 3 fields essentially creating a structure similar to a "Many to many" relational table. These fields are:
Employe_ID, Project_ID, Position (quick example).
What are ...
0
votes
1answer
71 views
JavaMelody Overhead instead of JMX
I am looking for a Monitoring tool for tomcat.
I found the thread here: Best tools to monitor Tomcat
I noticed JavaMelody and installing it took only 10 minutes.
However, I have the following ...
1
vote
1answer
93 views
Is CPU time relevant to Hyperthreading?
Is increased CPU time (as reported by time CLI command) indicative of inefficiency when hyperthreading is used (e.g. time spent in spinlocks or cache misses) or is it possible that the CPU time is ...
1
vote
1answer
31 views
Python Effecient Wrappers
Python function calls are relatively expensive. But I keep running into cases where I would like to be able to call function in different ways, and the easiest way seems to be to create a light ...
0
votes
2answers
56 views
What is the Riak per-key overhead using the Bitcask backend?
It's a simple question with apparently a multitude of answers.
Findings have ranged anywhere from:
a. 22 bytes as per Basho's documentation:
...
1
vote
1answer
81 views
Copying a bunch of data to global memory at once In CUDA
I want to copy a bunch of data to device from host either at once or as a series of chunks in turn, it'll affect my algorithm. My question is that which one has more overhead? I think, invoking more ...
2
votes
0answers
62 views
Do spawned child processes count as user time?
I have a Java process that starts a bunch of child processes and interleaves them by executing to "kill -STOP" and "kill -CONT" (following the suggestion given in Suspend a child process spawned by ...
0
votes
2answers
67 views
what does insert and commit do in Mybatis?
I did a test on the overhead of insert operation as well as commit operation.code snippets are as follows:
long t2 = System.currentTimeMillis();
session.insert("mybatis_test.BlogMapper.insert", new ...
-3
votes
1answer
32 views
Notion of XML overhead [closed]
I am new to SOA and I cannot find somewhere what is the notion of XML overhead. It has something to do with the comparison of RESTful and SOAP-based web services.
Can someone provide an explanation ...
-1
votes
1answer
105 views
MySQL resultset [closed]
I have a question regarding the resultset that came from the server. Is there any way to DONT receive the very large stuff of field names and metadata, even if I make a prep.statement and bind etc. ...
2
votes
4answers
144 views
Can vtable overhead be avoided using a static_cast?
Here is my problem. I have a base class and a derived class which overrides some methods from the base class. For simplicity consider the following example:
struct base
{
virtual void fn()
...
-1
votes
2answers
96 views
Structs into classes - Noticeable function overhead? C++ [closed]
Taking this as an example:
I have 20 structs. I access all of the struct's fields directly, getting values off them, pointers to other sub-structs they might have, etc.
Now, I restructure the ...
0
votes
0answers
129 views
Linux thread switch overhead vs. process switch overhead
I appreciate that under Linux, threads are mapped onto processes. What I am unclear about is the difference in magnitude between thread switch overhead and process switch overhead using the Native ...
11
votes
2answers
186 views
Identifying a property name with a low footprint
I wish to send packets to sync properties of constantly changing game objects in a game. I've sent notifications of when a property changes on the server side to a EntitySync object that is in charge ...
0
votes
1answer
63 views
Android: SOAP and JTDS Overhead
what I'm currently doing is sending GPS data with a timestamp and other parameters to a remote MSSQL database.
At first I've sent it via ksoap2 to a SOAP WebService.
Because of the huge overhead I ...
4
votes
1answer
378 views
In CUDA profiler nvvp, what does the “Shared/Global Memory Replay Overhead” mean? How is it computed?
When we use CUDA profiler nvvp, there are several "overhead"s correlated with instructions, for example:
Branch Divergence Overhead;
Shared/Global Memory Replay Overhead; and
Local/Global Cache ...
4
votes
3answers
172 views
Java GC overhead limit exceeded. Lots of hashmaps and a priorityqueque. What can i do?
I have searched for an answer, but I didn't find anything that could answer 100% my question. :D
So, I need to create from an hashmap other 3 new hasmaps, exchanging 2 of its values in 3 different ...
2
votes
1answer
277 views
Why CUDA memory copy speed behaves like this, some constant driver overhead?
I always have a strange 0.04 ms overhead when working with memory in CUDA on my old GeForce 8800GT. I need to transfer ~1-2K to constant memory of my device, work with that data on it and get only one ...
0
votes
2answers
107 views
MySQL connections and PHP
I have a somewhat general question regarding what's best when programming in PHP using also database connections. I am building a project which includes several modules and each module needs to ...
1
vote
2answers
269 views
Fast Cross Product. Function call overhead?
I'm newbie in C++ programming. I'm trying to see the benefits from moving all my MatLab software to C++. I'm doing some finite element stuff, mainly nonlinear, so one of the operations I need to ...
0
votes
3answers
75 views
Different functions use the same function, reduce overhead
Code:
namespace Dialog {
enum class Type {Info, Warning, Error};
enum class Buttons {OK, OK_CANCEL, YES_NO, YES_NO_CANCEL};
void Box(Pane* parent, Core::String, Core::String, Buttons, ...
2
votes
1answer
115 views
Overhead and (in)efficiency of NoSQL databases?
I have a question about NoSQL type databases, in particular MongoDB, but it applies in general to most key-value or document based storages. Some of the selling points of NoSQL are speed and ...
1
vote
2answers
130 views
Overhead of time command in unix
i was wondering what is the overhead of using the time command in unix.
i know how to use it, but i want to know how much longer the command
$ time java HelloWorld
takes on a terminal, than the ...
1
vote
2answers
183 views
Overhead of D classes
I thought I heard that D classes have two words (2 void*) of overhead instead of the one word required by C++. I also heard that the vtable layout is incompatible with C++. Do I remember correctly? If ...
3
votes
1answer
147 views
GC heap sizing and program memory overhead
I'm trying to figure out what's happening with my application.
Problems:
GC invoking doesn't reduce unused heap size as much as it should, but it should since I'm using serial GC (or UseParNewGC) ...
2
votes
1answer
694 views
What Causes Instruction Replay Overhead in CUDA
I ran the visual profiler on a CUDA application of mine. The application calls a single kernel multiple times if the data is too large. This kernel has no branching.
The profiler reports a high ...
2
votes
3answers
650 views
Calculating HashMap overhead in Java
Let's say I'm storing 1000 objects in a hashmap. This hashmap is extended to allow me to map three dimensional coordinates to the objects stored in it; the objects inside have a fixed size. The hash ...
1
vote
2answers
144 views
How to test the WebSocket over head?
I need to test the over head on my WebSocket application. How to test it and see the results?
0
votes
1answer
241 views
KnockoutJS duplicating data overhead
For the past few days I'm getting more interested in Knockoutjs. It looks very promising because it models the MVVM pattern and WPF like bindings, but i do have some doubts whenever it bring something ...
0
votes
3answers
234 views
Overheads involved in OSGI
OSGI is a buzzword today. It has many advantages like loose coupling, reusability. But i want to know whether there are any overheads involved with OSGI as i have to use in my project. Does it effect ...
0
votes
0answers
37 views
How expensive is to open a new database connection?
Let's have a legacy program in a form of executable written in C++. You will fork a process, feed in the data from a file or STDIN, program will process the data and write results to the file or ...
4
votes
2answers
257 views
Learn about object overhead in JVM
I am studying java, and I remember reading somewhere that java objects, had some overhead inside the JVM, which was used for administration reasons by the virtual machine. So my question is, can ...
0
votes
0answers
57 views
Size of data transferred to/from MySQL server as a function of number of rows and columns retrieved and their corresponding data types
I wonder if there is any formulation for how much data transfer you would see over a network if you query a given MySQL table and retrieve R rows of data with C columns each, given that the size of ...
0
votes
1answer
232 views
WordPress database error The table is full for query UPDATE
In my wordpress multisite, in the main website, I got error when I tried to update any post or widget. When I put my site in debug mode, I found many error with: The table is full for query UPDATE or ...
3
votes
1answer
125 views
Do unused properties cause overhead?
Suppose we had a generated class with a lot of redundant accessors. They are just accessors, they are not fields. They are not called anywhere. They just sit there being redundant and ugly.
For ...
0
votes
0answers
60 views
What is the overhead for a try catch block in C++ and does it vary with the number of catches? [duplicate]
Possible Duplicate:
In what ways do C++ exceptions slow down code when there are no exceptions thown?
In C++, what is the overhead imposed by a try catch block in C++ for the case that no ...
2
votes
8answers
246 views
Overhead of const modifier for built-in types in C++
I prefer to add const modifier to all built-in arguments in functions I write. E.g.:
void foo(const int arg1, const double arg2);
is better for me than:
void foo(int arg1, double arg2);
After ...
0
votes
3answers
110 views
Most efficient method of performing &&?
I've got a common situation where you have two variables (xSpeed and ySpeed) which I want to independently set to zero when they fall below minSpeed, and exit when they're both zero.
What would be ...
3
votes
1answer
297 views
How to turn off git 1.7.8 overhead for binary files (.doc, .pdf, etc)
I used git 1.7.4 for working with large svn repo - it was ok.
I updated to git 1.7.8, and now, when I do "git svn dcommit" git do some superfluous work.
In task manager, I see that it do about 1M of ...
1
vote
2answers
217 views
Is there any extra cost of calling non-virtual base methods in virtual inheritance?
I had referred this question (I changed its title). I am aware that code generation related to virtualness are implementation specific. However, earlier question suggests that, there is an additional ...
5
votes
2answers
422 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 ...
2
votes
3answers
352 views
Overhead of HTML whitespace indentation
I started wondering what is the overall impact of using whitespaces to indent html documents.
Why not simply use tabs to indent? Wouldn't this be more cost-effective: 1 char (\t) vs. example 4 chars ...
9
votes
5answers
2k 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 ...
2
votes
4answers
165 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 ...
1
vote
2answers
520 views
Passing session and response objects to a class - overhead?
I was wondering if anyone could help me understand if what I am doing is a lot of overhead or not. It is currently working but I am not sure if this could slow down the site or not.
I have a ...
0
votes
2answers
365 views
Overhead of Services in Android (how many should I create)
Does anybody know how big the overhead for services in Android is.
And if there are any other argument helping me with the following design decision.
I have two SQLite Dbs, one storing actual data ...
3
votes
2answers
689 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 ...

