What is it exactly a BLOB in a DBMS context

前端 未结 7 1994
清歌不尽
清歌不尽 2020-11-30 19:23
  • What is it a BLOB?
  • How can I use it?
  • What are the differences between DBMS\'s BLOBs. I would like to save data using BLOBs into any DBMS and then rea
7条回答
  •  心在旅途
    2020-11-30 20:14

    I think of it as a large array of binary data. The usability of BLOB follows immediately from the limited bandwidth of the DB interface, it is not determined by the DB storage mechanisms. No matter how you store the large piece of data, the only way to store and retrieve is the narrow database interface. The database is a bottleneck of the system. Why to use it as a file server, which can easily be distributed? Normally you do not want to download the BLOB. You just want the DB to store your BLOB urls. Deposite the BLOBs on a separate file server. Then, you reliefe the precious DB connection and provide unlimited bandwidth for large objects. This creates some issue of coherence though.

提交回复
热议问题