Hi all!
I have multiple custom entities I'm building with lots of custom fields that are numbers. My question is: in the long run, is there a benefit to storing as many numbers as I can as whole numbers instead of decimal numbers? Especially if I'm going to have >10,000 records in an entity in the future? Eg: Creating a custom field called "Distance from School" in a custom entity called "Student" and storing a student's distance from school as 1250 meters (whole number) instead of 1.25 kilometers (decimal number)?
My thinking is that whole numbers are stored as fixed-point numbers while the decimal numbers are stored as floating-point, and therefore in the long run (when I have tens-of-thousands of records in an entity) it would make sense to have as many fixed-point variables as possible to keep the speed of processing/fetching data/calculations as quick as possible.
Thanks!