`
simomo
  • 浏览: 26130 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
社区版块
存档分类
最新评论

谢天谢地 django的memcache backend是线程安全的~

阅读更多

因为项目要用到memcache,一直头疼于memcache python绑定的线程安全问题,今天无意中才发现,django的cachebackend已经处理好了~

 写道
Django relies on the cache backend to be thread-safe, and a single instance of a memcache.Client is not thread-safe. The issue is with Django only creating a single instance that is shared between all threads (django.core.cache.cache).

 大致意思是,python的client不是线程安全的,django是靠它自己的cache backend才实现了线程安全,所有的django线程都是公用一个链接实例去链接memcache的。

 

 

http://code.djangoproject.com/ticket/3701

 

 

 

0
6
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics