Today the movie Jack Reacher reports a vote average of 4.36 in the discover endpoint.
However in the movie endpoint the average is reported as 4.3.
Is the truncation (not rounding) intentional? I can mimic the same in my application but want to make sure it won't be changing or understand why it is reported differently.
Thanks!
找不到电影或节目?登录并创建它吧。
Travis Bell 的回复
于 2016 年 10 月 29 日 1:07下午
What you're seeing is more likely a cache difference. I just cleared the cache now both are reporting 4.3. The website and get info methods (Ruby) both round to a single decimal while the search/discover/featured list methods (Lua) round to 2 decimals. There's a reason for this and the long and short of it is because of the ay Lua wants to round floats. Getting it to round the same way Ruby does proved to be surprisingly difficult, so for now they're different.