Metadata-Version: 1.0
Name: lru_cache
Version: 0.1.0
Summary: thread safe lru cache
Home-page: http://pypi.python.org/pypi/TowelStuff/
Author: acmerfight
Author-email: acmerfight@gmail.com
License: LICENSE.txt
Description: lru cahe
        =====================
        
        基于 **double link list** 和 **dict** （正好是**OrderedDict**）实现的一个线程安全的 lru cache decorator。
        
        #### 使用方法
            @LruCache(maxsize=2, timeout=1)
            def foo(num):
                return num
        
Platform: UNKNOWN
