thread-safe python object pool
Project description
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')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
object_pool-0.2.tar.gz
(2.2 kB
view details)
File details
Details for the file object_pool-0.2.tar.gz
.
File metadata
- Download URL: object_pool-0.2.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbff97f36b369270705037d13016d05733504c8c731519c9d64622ad09c347de |
|
MD5 | 9ea4bfe0cddf761983e590af4ee74db3 |
|
BLAKE2b-256 | 1f96a60c3c2462d87fda8a5d761836772f9ff8890589ce7b9d04374138b43f96 |