ThreadLocal

在多线程环境下,每个线程都有自己的数据。一个线程使用自己的局部变量比使用全局变量好,因为局部变量只有线程自己能看见,不会影响其他线程,而全局变量的修改必须加锁。

但是局部变量也有问题,就是在函数调用的时候,传递起来很麻烦:

  1. def process_student(name):
  2. std = Student(name)
  3. # std是局部变量,但是每个函数都要用它,因此必须传进去:
  4. do_task_1(std)
  5. do_task_2(std)
  6. def do_task_1(std):
  7. do_subtask_1(std)
  8. do_subtask_2(std)
  9. def do_task_2(std):
  10. do_subtask_2(std)
  11. do_subtask_2(std)

每个函数一层一层调用都这么传参数那还得了?用全局变量?也不行,因为每个线程处理不同的Student对象,不能共享。

如果用一个全局dict存放所有的Student对象,然后以thread自身作为key获得线程对应的Student对象如何?

  1. global_dict = {}
  2. def std_thread(name):
  3. std = Student(name)
  4. # 把std放到全局变量global_dict中:
  5. global_dict[threading.current_thread()] = std
  6. do_task_1()
  7. do_task_2()
  8. def do_task_1():
  9. # 不传入std,而是根据当前线程查找:
  10. std = global_dict[threading.current_thread()]
  11. ...
  12. def do_task_2():
  13. # 任何函数都可以查找出当前线程的std变量:
  14. std = global_dict[threading.current_thread()]
  15. ...

这种方式理论上是可行的,它最大的优点是消除了std对象在每层函数中的传递问题,但是,每个函数获取std的代码有点丑。

有没有更简单的方式?

ThreadLocal应运而生,不用查找dictThreadLocal帮你自动做这件事:

  1. import threading
  2. # 创建全局ThreadLocal对象:
  3. local_school = threading.local()
  4. def process_student():
  5. # 获取当前线程关联的student:
  6. std = local_school.student
  7. print('Hello, %s (in %s)' % (std, threading.current_thread().name))
  8. def process_thread(name):
  9. # 绑定ThreadLocal的student:
  10. local_school.student = name
  11. process_student()
  12. t1 = threading.Thread(target= process_thread, args=('Alice',), name='Thread-A')
  13. t2 = threading.Thread(target= process_thread, args=('Bob',), name='Thread-B')
  14. t1.start()
  15. t2.start()
  16. t1.join()
  17. t2.join()

执行结果:

  1. Hello, Alice (in Thread-A)
  2. Hello, Bob (in Thread-B)

全局变量local_school就是一个ThreadLocal对象,每个Thread对它都可以读写student属性,但互不影响。你可以把local_school看成全局变量,但每个属性如local_school.student都是线程的局部变量,可以任意读写而互不干扰,也不用管理锁的问题,ThreadLocal内部会处理。

可以理解为全局变量local_school是一个dict,不但可以用local_school.student,还可以绑定其他变量,如local_school.teacher等等。

ThreadLocal最常用的地方就是为每个线程绑定一个数据库连接,HTTP请求,用户身份信息等,这样一个线程的所有调用到的处理函数都可以非常方便地访问这些资源。

小结

一个ThreadLocal变量虽然是全局变量,但每个线程都只能读写自己线程的独立副本,互不干扰。ThreadLocal解决了参数在一个线程中各个函数之间互相传递的问题。

参考源码

use_threadlocal.py

原文: https://wizardforcel.gitbooks.io/liaoxuefeng/content/py3/66.html