hypixel.py icon indicating copy to clipboard operation
hypixel.py copied to clipboard

Move caching into shared methods.

Open Snuggle opened this issue 6 years ago • 0 comments

def addToCache(cacheURL, data, cacheLength):
    # Return True if added, return False if not
    pass
def removeFromCache(cacheURL):
    # Return True if removed, False if not
    pass
def getFromCache(cacheURL):
    # Return data or None
    pass
def cleanCache():
    # Calls removeFromCache
    pass

Snuggle avatar Nov 23 '17 01:11 Snuggle