Does anyone know if there's an out-of-the box way of storing images directly in the database vs. using ImageField model type that simply uploads it to the MEDIA_ROOT. And if there is, how does one serve those images then?
Cheers
|
Does anyone know if there's an out-of-the box way of storing images directly in the database vs. using ImageField model type that simply uploads it to the MEDIA_ROOT. And if there is, how does one serve those images then? Cheers |
||||
|
|
|
No, there isn't. And for good reason. It's horribly inefficient to store and serve images from the database. Store them on the filesystem, and serve them directly from Apache. |
|||||||
|
|
There is a nice solution here: http://djangosnippets.org/snippets/1305/ it stores content in a database blob. |
|||
|
|
|
It seems there is no built-in |
|||
|
|