/var/logmarcus chiu

/var/log

❯

Computer

❯

Software/Fullstack Development

❯

Design Patterns

❯

Software Design Patterns (SDP)

❯

Creational Design Patterns

Object Pool

Created on Oct 26, 2021 · Last Modified on Oct 27, 2021

Intent

  • when objects are expensive to create and they are needed only for short periods of time it is advantageous to utilize the Object Pool pattern
  • provides a cache for instantiated objects tracking which ones are in use and which are available.
  • similar to Multiton Design Pattern

Resources

  • https://java-design-patterns.com/patterns/object-pool/