Tagged Questions
2
votes
5answers
3k views
What is the best way to reduce cyclomatic complexity when validating data?
Right now I'm working on a web application that receives a significant amount of data from a database that has a potential to return null results. When going through the cyclomatic complexity for the ...
0
votes
1answer
49 views
Temporary storage for keeping data between program iterations?
I am working on an application that works like this:
It fetches data from many sources, resulting in pool of about 500,000-1,500,000 records (depends on time/day)
Data is parsed
Part of data is ...