Skip to main content

object_poll is a simple thread-safe generic python object pool. Typical use:

import memcache
import object_pool

memcache_pool = ObjectPool(lambda: memcache.Client(['127.0.0.1:11211']), max_size=10)
with memcache_pool.item() as memcache:
    memcache.set(b'key', b'value')

The with statement is not required:

try:
    memcache = memcache_pool.get()
finally:
    memcache_pool.put(memcache)

It supports a timeout argument as well:

try:
    memcache = memcache_pool.get(timeout=1.0)
except ObjectPoolTimeout:
    import logging
    logging.warning('timed out trying to get memcache connection')

Release files for object_pool 0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for object_pool 0.2
File Size Uploaded
object_pool-0.2.tar.gz 2.2 kB Details

Release files / object_pool-0.2.tar.gz

Download URL object_pool-0.2.tar.gz
Size 2.2 kB
Tags Source
SHA-256 checksum
How to use checksums
cbff97f36b369270705037d13016d05733504c8c731519c9d64622ad09c347de
BLAKE2b-256 checksum
How to use checksums
1f96a60c3c2462d87fda8a5d761836772f9ff8890589ce7b9d04374138b43f96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.2 This release

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page