IndexedDB: Store file as File or Blob or ArrayBuffer. What is the best option?

后端 未结 2 485
甜味超标
甜味超标 2021-02-02 11:03

Now most of browsers are supporting IndexedDB to store data/file directly as File, Blob or ArrayBuffer.

This code save

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-02 11:36

    This is a debatable matter, but there are some lines we can draw here, I am quoting MDN here:

    The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system.

    so between file and blob, it's a matter of needed functionality (my preference is blob as it's a bit more handy).

    now between blob and ArrayBuffer, this one is tricky, since it totally depends on what you need, ArrayBuffer is very helpful in some cases but it's a structured and it's a

    fixed-length container for binary data

    so your file size can make a huge difference.

    another big point is, ArrayBuffer is in-memory, while blob can be any where, disk or memory, so with using blob you might be reducing over head a lot. so for your case, imho, blob wins.

    now on a side note, I don't know what you are trying to do exactly, but storing the whole file in a db is not a good idea unless your target is indexing the whole file content and querying it, because, not all user devices can handle that type of overload, so, if you don't need the content, index the file names only, it saves time and storage space.

    I hope this helps.

提交回复
热议问题