database for huge files like audio and video

前端 未结 2 380
眼角桃花
眼角桃花 2021-01-07 02:13

My application creates a large number of files, each up to 100MB. Currently we store these files in the file system which works pretty well. But I am wondering if there is a

2条回答
  •  情歌与酒
    2021-01-07 02:37

    A file system is perfectly suited for storing files. If you need to associate them with a database, do it by filename. The filesystem already does numerous fancy things to assure it is efficient. It's probably best that you don't try to outsmart it.

提交回复
热议问题