Erlang Phash 实现
我试图重现 Erlang phash 用另一种语言(例如 Ruby)。有谁知道其实施细节?
基本上,如果在 Erlang 中: erlang:phash(X, n) -> erlang:phash(X, n) ->是 我想要那个 Ruby 中的 phash(X,n) = Y
。
I'm trying to reproduce the exact behavior of Erlang phash in another language (Ruby for example). Does anyone know the details of its implementation?
Basically, if in Erlang :erlang:phash(X, n) -> Y
I want thatphash(X,n) = Y
in Ruby.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要了解其工作原理,请检查原始代码: https://github.com/erlang/otp/blob/cbd1378ee1fde835e55614bac9290b281bafe49a/erts/emulator/beam/utils.c#L644
但是你不能在另一种语言中拥有“精确”的 phash 行为 - 仅仅因为你不这样做那里没有可用的 erlang 数据类型。 (当然,除非您创建自己的映射)
To see how it works, check the original code: https://github.com/erlang/otp/blob/cbd1378ee1fde835e55614bac9290b281bafe49a/erts/emulator/beam/utils.c#L644
But you cannot have "exact" behaviour of phash in another language - simply because you don't have erlang's datatypes available there. (unless you create your own mappings of course)