From https://api.developer.betfair.com/se...rketCatalogue:
What would be the best way to store it in a MySql database? I've been reading about the decimal data type, but that is supposed to incur a performance penalty http://stackoverflow.com/questions/2...mysql-postgres
However, if I split it into two fields - exchange and market Id, my code will incur additional complexity.
At the moment, I am using a string field, but am not sure if that is much better.
Code:
The unique identifier for the market. MarketId's are prefixed with '1.' or '2.' 1. = UK Exchange 2. = AUS Exchange.
However, if I split it into two fields - exchange and market Id, my code will incur additional complexity.
At the moment, I am using a string field, but am not sure if that is much better.


Comment