Redis
 sql >> Baza danych >  >> NoSQL >> Redis

Prawidłowy sposób korzystania z puli połączeń Redis w Pythonie

O1:Tak, używają tej samej puli połączeń.

O2:To nie jest dobra praktyka. Ponieważ nie możesz kontrolować inicjalizacji tej instancji. Alternatywą może być użycie singletona.

import redis


class Singleton(type):
    """
    An metaclass for singleton purpose. Every singleton class should inherit from this class by 'metaclass=Singleton'.
    """
    _instances = {}

    def __call__(cls, *args, **kwargs):
        if cls not in cls._instances:
            cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
        return cls._instances[cls]


class RedisClient(object):

    def __init__(self):
        self.pool = redis.ConnectionPool(host = HOST, port = PORT, password = PASSWORD)

    @property
    def conn(self):
        if not hasattr(self, '_conn'):
            self.getConnection()
        return self._conn

    def getConnection(self):
        self._conn = redis.Redis(connection_pool = self.pool)

Następnie RedisClient będzie klasą singletona. Nieważne, ile razy wywołasz client = RedisClient() , otrzymasz ten sam obiekt.

Możesz go więc używać w następujący sposób:

from RedisClient import RedisClient

client = RedisClient()
species = 'lion'
key = 'zoo:{0}'.format(species)
data = client.conn.hmget(key, 'age', 'weight')
print(data)

I przy pierwszym wywołaniu client = RedisClient() faktycznie zainicjuje tę instancję.

Lub możesz chcieć uzyskać inną instancję na podstawie różnych argumentów:

class Singleton(type):
    """
    An metaclass for singleton purpose. Every singleton class should inherit from this class by 'metaclass=Singleton'.
    """
    _instances = {}

    def __call__(cls, *args, **kwargs):
        key = (args, tuple(sorted(kwargs.items())))
        if cls not in cls._instances:
            cls._instances[cls] = {}
        if key not in cls._instances[cls]:
            cls._instances[cls][key] = super(Singleton, cls).__call__(*args, **kwargs)
        return cls._instances[cls][key]



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Spring Session Data Redis — uzyskaj prawidłowe sesje, aktualny użytkownik ze sklepu Redis Store

  2. Przechowywanie wartości zwracanej przez node.js setTimeout w redis

  3. Testy porównawcze Redis dla poleceń hget i hset

  4. Jeśli pracownik selerowy ciężko umrze, czy praca zostanie wznowiona?

  5. nestJS socket.io-redis:6.0.1