본문 바로가기

분류 전체보기

(313)
공백('' )은, None은 아니지만, False이다. 그래서 is not None 으로는 공백('')을 걸러낼 수 없다 (feat. 거르는 법은?) 요약 '' 공백은, None은 아니지만, False이다. 그래서 is not None 으로는 '' 을 걸러낼 수 없다. 거르는 방법은, 그냥 if text: 식으로 하면 됨. if cur_orw['text_date'] is not None: pass 이렇게 하니까, 'cur_orw['text_date']'가 '' 을 값으로 가진 경우에도 True로 됐다. 그래서, None 이거나, '' 인 경우에 모두 거를 수 있는 방법이 필요했다. 바로 바로 if cur_orw['text_date']: pass https://stackoverflow.com/questions/5690491/best-way-to-do-a-not-none-test-in-python-for-a-normal-and-unicode-empty-s..
여러 변수 한번에 초기화 하기 (feat. a = b = '') a = b = ''
변수가 선언된 적이 없으면 null로 처리하는 로직 (feat. local, global) [질문] 만약 text라는 변수를 초기화 하지않고, text가 선언된 적이 없으면 null로 처리하는 로직이 가능할까요? [답변] locals(), globals() 한번 찾아보셔요 result = text if 'text' in globals() else None 이런식으로 하면 되지 않을까 싶네요
(스크랩) Redis 구조 (feat. 시리즈물임!) https://cla9.tistory.com/101 1. Redis 구조 서론 지금부터 다룰 Redis 시리즈는 개인 공부 내용 정리 목적으로 작성하였습니다. 주요 포스팅 내용은 redis-cli 명령어 학습과 Spring Data Redis를 활용해서 해당 명령어 적용방법에 대해서 살펴보겠 cla9.tistory.com
(스크랩) ★★★Flask, Celery, and Redis? (맥도날드 예제) https://ljvmiranda921.github.io/notebook/2019/11/08/flask-redis-celery-mcdo/ Distill: Why do we need Flask, Celery, and Redis? (with McDonalds in Between) Understanding Flask, Celery, and Redis through Mcdonalds ljvmiranda921.github.io https://ljvmiranda921.github.io/notebook/ Notebook Some notes on software, systems, machine learning, and research. ljvmiranda921.github.io
(스크랩) FastAPI - RabbitMQ - Celery 아키텍처 https://medium.com/thelorry-product-tech-data/celery-asynchronous-task-queue-with-fastapi-flower-monitoring-tool-e7135bd0479f Celery Asynchronous Task Queues with Flower & FastAPI Let’s implement the amazing Celery Distributed Task Queue with FastAPI and monitor the background tasks (workers) using Flower. medium.com
(스크랩) 메세지 브로커 비교 (feat. RabbitMQ, Kafka, Redis) worker로 celery 쓸거면 kafka는 별도의 작업이 필요. 반면 rabitMQ는 잘 호환되는듯~! Microservices에 비동기 통신을 사용할 때 메시지 브로커를 사용하는 것이 일반적입니다. 브로커는 서로 다른 마이크로 서비스 간의 통신이 안정적이고 안정적이며, 시스템 내에서 메시지가 관리 및 모니터링되며, 메시지가 손실되지 않도록 보장합니다. 몇 가지 메시지 브로커를 선택할 수 있으며, 규모와 데이터 기능이 다양합니다. 이 블로그 게시물은 가장 인기 있는 3가지 브로커: RabbitMQ, Kafka, Redis를 비교할 것입니다. https://otonomo.io/redis-kafka-or-rabbitmq-which-microservices-message-broker-to-choose/ R..
(스크랩) ★★ Traefik? Nginx? (feat. web server, reverse proxy, 프록시 서버) https://www.lesstif.com/system-admin/forward-proxy-reverse-proxy-21430345.html 포워드 프록시(forward proxy) 리버스 프록시(reverse proxy) 의 차이 Web Server와 WAS 에 대해 연동하려면 Reverse Proxy 에 대한 이해가 필수입니다. www.lesstif.com https://tech.ashe.kr/21 Traefik vs Caddy 개인 프로젝트에서 사용할 Web Server 를 선택하기 위해 django template 을 찾아보면서 유명한 프로젝트의 설정을 찾아보았습니다. 그 중 가장 유명한 cookiecutter-django 는 traefik 을 wemake-django-tem.. tech.ashe..