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