Postgres'文本列不喜欢我的 zlib 压缩数据
是否有更好的数据类型可用于在 Postgresql 中存储 zlib 压缩字符串?
Is there a better data type to be using to store a zlib compressed string in Postgresql?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 bytea “bytea 数据类型允许存储二进制字符串”
Use bytea "The bytea data type allows storage of binary strings"
使用 bytea。 Zip 压缩数据不是文本。
Use a bytea. Zip compressed data is not a text.