PostgreSQL中有哈希函数吗?
我正在使用 Sphinx 来索引我的数据库。 问题是我必须通过字符变化字段过滤结果。 所以我必须找到一种方法将字符变化转换为sql_attr_uint。 我知道mysql中的CRC32可以做到这一点。 PostgreSQL 中是否有 CRC32 或任何替代品?
I am using Sphinx to index my database.
The problem is I have to filter the result by a character varying field.
So I have to find a way to convert character varying to sql_attr_uint
.
I know that CRC32 in mysql can do the trick. Is there a CRC32 or any replacement in PostgreSQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是定义思考 sphinx 的 CRC32 函数 (gem):
This is the CRC32 function that defines thinking sphinx (gem):
也许您可以使用
decode(substring(md5('foo') for 8), 'hex')
。这将为您提供该字符串的 md5 哈希值的前 4 个字节的字节。您可以使用以下方法将其转换为整数:
Maybe you can use
decode(substring(md5('foo') for 8), 'hex')
. This would get you bytea of first 4 bytes of md5 hash of this string.You can convert it to integer using something like: