[ Team LiB ] Previous Section Next Section

Applicability

Use the Resource Pool pattern when:

  • Your application needs to repeatedly open and close database resources that are slow to initialize.

  • Keeping resources open for extended intervals does not negatively impact concurrency. A resource pool leaves resources open so they can be recycled.

    [ Team LiB ] Previous Section Next Section