owlapy.util.LRUCache

class owlapy.util.LRUCache(maxsize: Optional[int] = None)[source]

Bases: Generic[owlapy.util._K, owlapy.util._V]

Methods

cache_clear

Clear the cache and cache statistics

cache_info

Report cache statistics

Attributes

KEY

NEXT

PREV

RESULT

sentinel

KEY = 2
NEXT = 1
PREV = 0
RESULT = 3
cache_clear()[source]

Clear the cache and cache statistics

cache_info()[source]

Report cache statistics

sentinel = <object object>