All Questions
Tagged with design-patternsprogramming-practices
3 questions with no upvoted or accepted answers
3votes
0answers
88views
Should my application call statsd directly or should I call statsd based off logs?
I'm planning on incrementing counters in statsd based of various events within my application. I have logging in place for these events. So, from my viewpoint I have two options: Update the ...
-1votes
1answer
134views
What is the best way to have 2 inherited class they share same base class but different interface?
I couldn't come up with better title. I will try to explain what the problem is. Currently I am trying to build dynamically created report structure. I define needed report in config file. When user ...
-2votes
1answer
276views
Property file, annotations or database tables for storing configurations
Which one is better property file, annotations or database tables for storing configurations related to a program? What are the advantages/disadvantages and what use cases are best suited for each ...