Tagged Questions
The tradeoff tag has no wiki summary.
22
votes
11answers
1k views
Why not mark everything inline?
First off, I am not looking for a way to force the compiler to inline the implementation of every function.
To reduce the level of misguided answers make sure you understand what the inline keyword ...
20
votes
17answers
3k views
Why should I ever use inline code?
I'm a C/C++ developer, and here are a couple of questions that always baffled me.
Is there a big difference between "regular" code and inline code?
Which is the main difference?
Is inline code ...
9
votes
2answers
4k views
Differences between System V and Posix semaphores
What are the trade-offs between using a System V and a Posix semaphore?
2
votes
4answers
75 views
Error Handling Trade-Off in Java
There are two ways of error handling:
1) Use nested If and check errors
2) Use try/catch
Here is tutorial about this. But it is said here that try/catch hurts the performance. So, it seems there is ...
2
votes
1answer
907 views
Pros and cons of using CCUIViewWrapper versus a ported functionality
I'm trying to understand the pros and cons of using something CCUIViewWrapper in Cocos2d versus a ported functionality. For instance, would it be better to use a UITableView in a CCUIViewWrapper, or ...
2
votes
2answers
853 views
Why Android for enterprise applications?
Recently one of our clients is considering the posibility of picking up an old WinMobile 5.0 project.
Several features are to be added to the point it will be a major version update.
The client is ...
2
votes
2answers
250 views
Shortest-path algorithms which use a space-time tradeoff?
Problem: finding shortest paths in an unweighted, undirected graph.
Breadth-first search can find the shortest path between two nodes, but this can take up to O(|V| + |E|) time. A precomputed lookup ...
2
votes
3answers
246 views
Slow Update vs Slow Select
This is a question about tradeoffs.
Imagine a social network. Each user has a status message, that he can change anytime. Whenever he does change it, all his friends are notified through a wall (like ...
2
votes
3answers
272 views
Doesn't Passing in Parameters that Should Be Known Implicitly Violate Encapsulation?
I often hear around here from test driven development people that having a function get large amounts of information implicitly is a bad thing. I can see were this would be bad from a testing ...
1
vote
0answers
123 views
Python Shelve Module Memory Consumption
I have been assigned the task of reading a .txt file which is a log of various events and writing some of those events into a dictionary.
The problem is that the file can sometimes get bigger than ...
1
vote
1answer
62 views
On-the-fly parser/pre-generation space/time tradeoff considerations
Do the space-related benefits of using an on-the-fly parser outweigh the time-related benefits of a pre-generated lookup table?
Long version:
I am authoring a chemistry reference tool, and am ...
0
votes
2answers
55 views
Optimize Searching Through Rails Database
I'm building a rails project, and I have a database with a set of tables.. each holding between 500k and 1M rows, and i am constantly creating new rows.
By the nature of the project, before each ...
0
votes
2answers
230 views
GNU GSL & MATLAB on Windows
This question is actually about the trade-off between GSL and MATLAB. First, let me define some variables:
- Target OS: Windows XP
- Target IDE: MS VS 2005/2008
- Software: Commercial
- ...
0
votes
5answers
554 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
3answers
210 views
What constitutes a good memory profile?
In designing any desktop applications, are there any general rules on how much memory should the application uses?
For heavy-weight applications, those can be easily understood or at least profiled ...