Relative Content

Tag Archive for defensive-programming

Is it worthwhile to try to write foolproof data structures?

The problem We need to store data in a table-like way, but we have very strict space constraints (~1Mb per table of 10k+ rows). We store data like this: ID | reviews | factor | score | interval | etc. —+———+——–+——-+———-+—– 1 | 244 | 2.4 | 10 | 4268 | … in a simple […]