Skip to content

Instantly share code, notes, and snippets.

@whitespy
Last active February 11, 2025 09:42
Show Gist options
  • Select an option

  • Save whitespy/e3f14853128a76cca298823afbcb1a35 to your computer and use it in GitHub Desktop.

Select an option

Save whitespy/e3f14853128a76cca298823afbcb1a35 to your computer and use it in GitHub Desktop.
singleton issue
if __name__ == "__main__":
base_manager = RedisBaseManager()
print(id(base_manager))
print(id(base_manager.redis_connection))
base_manager = RedisBaseManager()
print(id(base_manager))
print(id(base_manager.redis_connection))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment