I have a django form where I have a FileField which accepts user’s resume. I am gonna convert the resume to a html document LATER. So I thought of pickling the original document right away and store in it a db colum and later unpickle it and convert it. Is that possible?
Share
it will be much better idea to just store the file and then open it again when you want to convert it. Pickling it and storing in the database will be a pretty big hit on your performance. Especially if the files are large.