Saving images: files or blobs?

后端 未结 11 2195
暖寄归人
暖寄归人 2020-11-30 07:59

When you save your images (supose you have lots of them) do you store then as blobs in your Database, or as files? Why?

Duplicate of: Storing Images in DB -

11条回答
  •  醉梦人生
    2020-11-30 08:21

    If I'm running on one web server and will only ever be running on one web server, I store them as files. If I'm running across multiple webheads, I put the reference instance of the image in a database BLOB and cache it as a file on the webheads.

提交回复
热议问题