http://www.tutorialspoint.com/python/python_multithreading.htm
import threading
class ThreadClass(threading.Thread):
def run(self):
# business logic
..
# lock acquire
threadLock.acquire()
...
# free lock to release
threadLock.release()
threadLock = threading.Lock()
# create new thread
thread1 = ThreadClass()
thread2 = ThreadClass()
thread1.start()
thread2.start()
'프로그래밍 > Python' 카테고리의 다른 글
Python Fabric Install (0) | 2013.01.28 |
---|---|
Python 공부 노트 10. - Django에서 Admin 화면 만들기 (2) | 2013.01.23 |
Python 공부 노트 8. - Django 에서 model을 이용한 기본 데이타 베이스 프로그래밍 (0) | 2013.01.23 |
Python 공부 노트 7. - Django 설치 (0) | 2013.01.22 |
Python 공부 노트 6. - Logging (0) | 2013.01.21 |