Evgenii Legotckoi
26 сентября 2018 г. 17:55

Пример - Объектный пул на Python

Пример шаблона проектирования Объектный пул на языке программирования Python.


  1. """
  2. Offer a significant performance boost; it is most effective in
  3. situations where the cost of initializing a class instance is high, the
  4. rate of instantiation of a class is high, and the number of
  5. instantiations in use at any one time is low.
  6. """
  7.  
  8.  
  9. class ReusablePool:
  10. """
  11. Manage Reusable objects for use by Client objects.
  12. """
  13.  
  14. def __init__(self, size):
  15. self._reusables = [Reusable() for _ in range(size)]
  16.  
  17. def acquire(self):
  18. return self._reusables.pop()
  19.  
  20. def release(self, reusable):
  21. self._reusables.append(reusable)
  22.  
  23.  
  24. class Reusable:
  25. """
  26. Collaborate with other objects for a limited amount of time, then
  27. they are no longer needed for that collaboration.
  28. """
  29.  
  30. pass
  31.  
  32.  
  33. def main():
  34. reusable_pool = ReusablePool(10)
  35. reusable = reusable_pool.acquire()
  36. reusable_pool.release(reusable)
  37.  
  38.  
  39. if __name__ == "__main__":
  40. main()

Вам это нравится? Поделитесь в социальных сетях!

Комментарии

Только авторизованные пользователи могут публиковать комментарии.
Пожалуйста, авторизуйтесь или зарегистрируйтесь