일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring Boot
- 쿠버네티스
- machine-learning
- VOA
- 도커
- 파이썬
- MySQL
- 코틀린
- AWS
- design pattern
- react
- Winform
- 스프링
- mybatis
- docker
- 마이바티스
- 스프링부트
- c#
- 리액트
- git
- kubernetes
- 리팩토링
- DataGridView
- Python
- Spring
- 자바
- github
- Kotlin
- Java
- springboot
Archives
- Today
- Total
목록파이썬 동시성 (1)
보뇨 다이어리
동시성 구현
코드로만 작성해보고 하다보니 코드로 설명! 자바스크립트에서는 Promise 라는게 있어서 잘만 사용했는데 파이썬은 어떻게..? 라는 생각이 들어서 찾아봤다 생각보다 사용방법은 간단했고 사실 같기도하다.. 필요한 부분만 주석으로 설명을 넣었다! import time import threading from concurrent.futures import Future import asyncio def network_request(number): time.sleep(1.0) return {"success": True, "result": number ** 2} def fetch_square(number): response = network_request(number) if response["success"]: pr..
컴퓨터 관련/Python 정보
2021. 3. 7. 11:56