Is there a guideline for estimating the amount of memory consumed by a BigDecimal?
BigDecimal
Looking for something similar to these guidelines for estimating
If you dig into the internals of BigDecimal you'll see that it uses a compact representation if the significand is <= Long.MAX_VALUE. Hence, the memory usage can vary depending on the actual values you're representing.
Long.MAX_VALUE