Tagged Questions
The design-consideration tag has no wiki summary.
4
votes
2answers
102 views
What is rationale behind _PTR_?
I am working with a source base with a unclear for me rule on pointer types definition: using _PTR_ macro instead of *. So, all the function prototypes and typedefs look like:
extern FILE_PTR ...
3
votes
2answers
27 views
What URI should I expect HTTP DELETEs at?
This is more of a conceptual integrity question for something that's been bothering me.
HTTP's DELETE method is supposed to be idempotent, and REST's URIs are supposed to actually represent things. ...
3
votes
2answers
140 views
Programming considerations for virtualized applications
There are lots of questions on SO asking about the pros and cons of virtualization for both development and testing.
My question is subtly different - in a world in which virtualization is ...
2
votes
1answer
227 views
How big is too big (for NTFS)
I have a program and as it's done now, it has a data directory with something like 10-30K files in it and it's starting to cause problems. Should I expect that to cause problems and my only solution ...
2
votes
6answers
601 views
Wordpress limits - system design consideration
I am designing a system for a customer. We are thinking about using Wordpress as a main platform (instead of writing our custom software), and customize it using addons or hiring developers to write ...
0
votes
1answer
130 views
Can NoSql be used for reporting in this situation?
The Situation
I am considering building a NoSQL-based application as an alternative to an existing Excel based financial risk management reporting tool. In short, my question revolves around the ...
0
votes
7answers
174 views
In Java, why are class members accessible to members of the same package by default?
I understand that unlike in C++, if I don't specify "public" or "private" when declaring a data member, it can be accessed from anywhere in the same package.
The designers of the Java language could ...
0
votes
1answer
65 views
Webserver for a desktop application – design consideration
We are moving our Delphi application to a new environment – it will be .NET. Some parts of an app will be moved to distributed processing, some will be moved to web servers. Therefore, this is an ...