Search Results

0
votes

On being a contractor at a shop where they don’t use database indexes

I agree with the answer Pax gave above, but I'd like to note that you should try to set the sample dbs up with realistic amounts of data inorder to ensure that the difference between indexed and no …
0
votes

What is a reasonable code coverage % for unit tests (and why)?

I think that what may matter most is knowing what the coverage trend is over time and understanding the reasons for changes in the trend. Whether you view the changes in the trend as good or bad w …
-2
votes

What single Java book would you recommend for an experienced software developer?

Agile Java by Langr is excellent if you also want an intro to Test Driven Design and the basic agile approach. …
0
votes

Constructor Injection: How many dependencies is too many?

You may also want to see if any of the parameters to your constructor should be combined into a single class as well (assuming that the parameters make sense as a class). It might also be …