在mysql中存储论坛帖子
phpBB 以一种奇怪的方式存储论坛帖子文本(例如:[BLOB - 115 B]),它是什么?它是如何完成的?
phpBB stores forum post texts in a strange way (like: [BLOB - 115 B]), what is it? How it is done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BLOB(二进制大型对象)是存储在数据库表中的二进制数据的大型集合。不同的数据库服务器以不同的方式处理 BLOB。但有一些共同的特征,例如:
BLOB 存储二进制数据,
不需要编码模式。斑点
数据以字节为单位存储。
BLOB 数据通常很大。很多
数据库服务器报价非常高
最大大小如 4 GB。
存储在表内。这是
存放在不同的存储区域
它的参考地址是
存储在表内。
BLOB (Binary Large Object) is a large collection of binary data stored in a database table. Different database servers handles BLOB differently. But there are some common characteristics like:
BLOB stores binary data, which
requires no encoding schema. BLOB
data is stored in units of bytes.
BLOB data is usually large. Many
database servers offer very high
maximum sizes like 4 GB.
stored inside the table. It is
stored in different storage areas
and its reference address is
stored inside the table.