About 827,000 results
Open links in new tab
  1. Object reuse with ObjectPool in ASP.NET Core | Microsoft Learn

    Apr 7, 2025 · DefaultObjectPoolProvider T IDisposable Items that are not returned to the pool will be disposed. When the pool gets disposed by DI, all items in the pool are disposed. Calling Get throws …

  2. Object Pool - Reactive Programming

    Object Pool Creational pattern This pattern is widely used for working with large numbers of computationally expensive objects. This pattern is advantageous for those scenarios where our …

  3. Create an object pool by using a ConcurrentBag - .NET

    Sep 15, 2021 · This example shows how to use a ConcurrentBag<T> to implement an object pool. Object pools can improve application performance in situations where you require multiple instances …

  4. Object Pool - Wikibooks, open books for an open world

    The object pool pattern uses a set of initialized objects kept ready to use, rather than allocating and destroying them on demand. A client of the pool will request an object from the pool and perform …

  5. Object Pool | Design Patterns - DevMaking

    Mar 29, 2021 · An Object Pool is a collection of pre-initialized objects, ready for use on-demand. In many cases, pooling is much more efficient than allocating and deallocating memory each time a …

  6. Object Pool Design Pattern - Online Tutorials Library

    Aug 1, 2023 · A software design pattern that is frequently used in Java programming to maximize the utilization of objects is called the Object Pool Design Pattern. The pattern controls how items are …

  7. Object Pool Design Pattern in Java - Jstobigdata

    May 9, 2020 · Learn the Object pool Design pattern in Java with the practical, working, real-world scenario. Complete Tutorial with code examples.

  8. Coding tutorial: Object pool pattern – Agate DRAGON Games

    Sep 27, 2024 · Learn how to code the object pool pattern by pre-allocating memory and reusing objects. Which can greatly improve performance when reusing short lived objects like bullets and particles.

  9. Object Pool Pattern & Prototype Pattern - Take The Notes

    Feb 18, 2023 · Object Pool Pattern is a type of Creational Design Pattern that helps to improve the performance by reusing objects which have already been created instead of creating new objects …

  10. Applying the Object Pool Pattern in C# for Reusable Resource …

    The Object Pool Pattern is a powerful design approach in C# that addresses this need by enabling the reuse of expensive-to-create objects. This article introduces the fundamentals of the Object Pool …