0
votes
5answers
96 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.
2
votes
3answers
188 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 …
2
votes
5answers
3k views
Java -Xms -Xmx Options and Speed Trade Off
Given these two commands
A:
$ java -Xms10G -Xmx10G myjavacode input.txt
B:
$ java -Xms5G -Xmx5G myjavacode input.txt
I have two questions:
Since command A use more memory in its parameter, …
15
votes
17answers
1k 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 …
4
votes
2answers
988 views
Differences between System V and Posix semaphores.
What are the trade-offs between using a System V and a Posix semaphore?
0
votes
3answers
146 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 …
