Caching pool is one sample implementation of pool factory where the factory can reuse memory to create a pool. Application defines what the maximum memory the factory can hold, and when a pool is released the factory decides whether to destroy the pool or to keep it for future use. If the total amount of memory in the internal cache is still within the limit, the factory will keep the pool in the internal cache, otherwise the pool will be destroyed, thus releasing the memory back to the system.
More...
Caching pool is one sample implementation of pool factory where the factory can reuse memory to create a pool. Application defines what the maximum memory the factory can hold, and when a pool is released the factory decides whether to destroy the pool or to keep it for future use. If the total amount of memory in the internal cache is still within the limit, the factory will keep the pool in the internal cache, otherwise the pool will be destroyed, thus releasing the memory back to the system.
// PJ_POOL_FACTORY
◆ PJ_CACHING_POOL_ARRAY_SIZE
#define PJ_CACHING_POOL_ARRAY_SIZE 16 |
Number of unique sizes, to be used as index to the free list. Each pool in the free list is organized by it's size.
◆ pj_caching_pool_destroy()
Destroy caching pool, and release all the pools in the recycling list.
- Parameters
-
◆ pj_caching_pool_init()
Initialize caching pool.
- Parameters
-
ch_pool | The caching pool factory to be initialized. |
policy | Pool factory policy. |
max_capacity | The total capacity to be retained in the cache. When the pool is returned to the cache, it will be kept in recycling list if the total capacity of pools in this list plus the capacity of the pool is still below this value. |