usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
292 B
18 lines
292 B
# -*- coding: utf-8 -*-
|
|
'''
|
|
Single-process in-memory LRU cache.
|
|
|
|
The shove psuedo-URL for a simple cache is:
|
|
|
|
simplelru://
|
|
'''
|
|
|
|
from shove import LRUBase
|
|
|
|
|
|
class SimpleLRUCache(LRUBase):
|
|
|
|
'''In-memory cache that purges based on least recently used item.'''
|
|
|
|
|
|
__all__ = ['SimpleLRUCache']
|
|
|