Bloated datatypes¶
There are multiple reasons to avoid larger datatypes than necessary:
- Increased storage costs associated with storing more data than necessary.
- Slower performance and more egress costs than necessary due to more data transfer over the wire than necessary.
- Can introduce unnecessary numerical rounding issues if using floats where integer representations are sufficient.