이 주제에 대해서 알아보게 된 것은 최근 제가 다니고 있는 회사에서 하나의 DB로 데이터들을 처리할려고 하니 이에 대한 해결책이 뭐가 있을 까 하고 고민을 해봤습니다. 처음에 내가 생각한 것은 다음과 같습니다. 1. MSA (MIcro Soft Arhitecture) : 마 ~ 우리가 자존심이 있지 쪼개보자!! 2. DB 분산 작업: 기존 애플리케이션 내부 DB를 나누게 되면 이에 대한 쓰기 작업을 분산 시킬 수 있지 않을까? 1번은 우리 회사에서 하기에는 인원도 부족하고, 장기적으로 바라보는 작업이기에 현실적으로 바로 접근하기에는 문 턱이 높기 때문에 저는 2번을 먼저 해보는 게 좋지 않을까 해서 조사하게 되었습니다. 제가 찾아본 공식문서는 다음과 같습니다. https://docs.djangoproje..
@action decorators drf의 modelviewset을 쓰면서 해당 기본 기능 말고도 더 많은 기능들을 넣고 싶을 때 쓰면 유용한 데코레이터이다 . 하나의 예제를 보여주겠습니다. (아주 간단한 예시 입니다 . ㅎㅎ) models.py from django.db import models class Memo(models.Model): content = models.TextField() title = models.CharField(max_length=20) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) objects = models.Manager() def __s..
def test_report_create(self): print("test_report_create") access_token = self.common_report_create({"email": "12@kakao.com", "password": "django_kakao_test"}) response = RequestsClient().post('http://127.0.0.1:8000/api/report', data={'title': 'hi', 'content': 'hello'}, headers={'Authorization': access_token}) self.assertEqual(response.status_code, 200) response = self.client.post(url, data={'con..
python -m venv env 우선 가상환경 먼저 세팅을 해준다. 가상환경 작동하는 방법은 " .\env\Scripts\activate " 입니다. pip install django djangorestframework requests 설치 할 것은 위와 같다. django-admin startproject backend . django-admin startapp accounts 그 다음 카카오 시크릿 키와 장고 안에 기본적으로 가지고 있는 시크릿 키를 json파일로 옮기는 작업을 해줘야 한다. settings.py import os import json secret_file = os.path.join(BASE_DIR, "secrets.json") secrets = None with open(secre..
views.py 코드 일부분 class BlogView(APIView): permission_classes = (permissions.IsAuthenticated,) def post(self, request): print("request",request) print("request.data: ",request.data) print("request.data의 타입: ",type(request.data)) print("request.FILES: ",request.FILES) print("request.FILES의 타입: ",type(request.FILES)) print("request.method: "+str(request.method)) print("request.content_type: ",reques..
from django.db import models class Blog(models.Model): title=models.CharField(max_length=25) def __str__(self) -> str: return self.title class Image(models.Model): blogId=models.ForeignKey(Blog,on_delete=models.CASCADE,related_name="images") image=models.ImageField(default='media/제목없음.jpeg',upload_to="") def __str__(self): return self.image 여기에서 related_name="" 설정하는 것이 중요하다. 자세한 내용은 아래 링크 참고 htt..
1단계(설치) pip instll Pillow django djangorestframework 2단계(설치) django-admin startproject backend . django-admin startapp blog 3단계(settings.py) INSTALLED_APPS = [ ... 'django.contrib.sites', 'blog.apps.BlogConfig' ] MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') 4단계(backend.urls.py) from django.contrib import admin from django.urls import path from django.urls.conf import includ..
- Total
- Today
- Yesterday
- Java
- 2021 KAKAO BLIND RECRUITMENT
- 알고리즘
- DRF
- 파이썬
- headers
- 백준
- 프로그래머스
- thread
- 자바
- Python
- Spring
- Linux
- postgres
- setattr
- 그래프
- 카카오
- Command Line
- PostgreSQL
- dockerignore
- docker-compose
- Collections
- django
- BFS
- env
- Pattern
- ubuntu
- docker
- Celery
- 면접
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |