Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
查看这里我发现NUM数据类型设置为Double. 我应该如何将 64 位Long值传递给 rethinkdb ?
NUM
Double
Long
从用户组窃取答案:
目前除了 RethinkDB 中的 double 之外,没有什么好方法可以对任何东西进行操作。(我们将来可能会添加对其他数字类型的支持。)
如果您只需要存储和检索 long,您可以将它们存储为字符串。如果您知道不会有任何超过 2^53 的数字,那么将 long 值存储为双精度值也是安全的。