320x100
Django - File Upload Handler(장고 파일 업로드 크기 조정)
파일을 업로드하는데, 기본 세팅값은 파일당 2.5MB로 알고있다.
이 파일당 최대 크기를 조정하는 방법은
django/conf/global_settings.py에 가면
# Maximum size, in bytes, of a request before it will be streamed to the
# file system instead of into memory.
FILE_UPLOAD_MAX_MEMORY_SIZE = 2621440 # i.e. 2.5 MB
가 있고
이 최대크기(기본2.5mb)이하일 경우
메모리에 담겨서 파일이 전달됨
MemoryFileUploadHandler
이 최대크기(기본2.5mb)초과일 경우
디스크에 담겨서 파일이 전달된다.
TemporaryFileUploadHandler
300x250
'개발일지 > 임시카테고리' 카테고리의 다른 글
Django -django-debug-toolbar 설치 및 활용 문제 해결! (0) | 2023.01.09 |
---|---|
Django - models 명령문 (filter, exclude, order_by, __lte) (0) | 2023.01.09 |
Django - shell 사용 ImproperlyConfigured 에러 해결, Django jupyter notebook 기본 세팅 (0) | 2023.01.09 |
CSS - padding의 재발견 (클릭 영역) (0) | 2023.01.09 |
CSS - 선택자(first-child, last-child, nth-child)N번째에 css 적용 (0) | 2023.01.08 |