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.
由于MEMORY存储引擎不支持BLOB列,那么存储二进制数据的推荐方式是什么?
MEMORY
BLOB
我们希望存储 600 到 10,000 个字符长的 gzip 压缩字符串。我们使用的是 MySQL 5.5.32。
varchar(10000) 是安全的选择吗?
您的选择将是VARBINARY数据类型。但是,请注意存储要求- 您不能在此数据类型中存储太长的字符串(请参阅特定于版本的手册页)
您可以使用 LONGTEXT ,这是一个不错的选择