python-diskcache
python-diskcache copied to clipboard
Question: Object pool with DiskCache
Imagine N distinct objects in a pool. When, for example object#3 is removed, it is immediately replaced with another copy of object#3. Once removed, an object is not returned to the pool after use. The N distinct objects are always available from the pool at all times.
Can DiskCache be used for such an object pool?