Created
October 25, 2014 16:51
-
-
Save tkhoa2711/7ce18809febbca4828db to your computer and use it in GitHub Desktop.
A thread-safe implementation of Singleton in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
# A thread-safe implementation of Singleton pattern | |
# To be used as mixin or base class | |
class Singleton(object): | |
# use special name mangling for private class-level lock | |
# we don't want a global lock for all the classes that use Singleton | |
# each class should have its own lock to reduce locking contention | |
__lock = threading.Lock() | |
# private class instance may not necessarily need name-mangling | |
__instance = None | |
@classmethod | |
def instance(cls): | |
if not cls.__instance: | |
with cls.__lock: | |
if not cls.__instance: | |
cls.__instance = cls() | |
return cls.__instance |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment