读书人

谢天谢地 django的memcache backend是

发布时间: 2012-12-22 12:05:06 作者: rapoo

谢天谢地 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

?

?

?

读书人网 >编程

热点推荐