[Answer]-Storing python pickled object into mysql + django

1👍

You can store blobs in the database – that’s what the BLOB type is for, after all – but there’s rarely a good reason to do so. Databases are best for structured and indexed data. If you just want to store an opaque blob then you should use the system that is best suited for that: the filesystem.

Leave a comment