I think it installs ok(?)
but now, after that... how to get it to work? I tried the instructions on the readme but couldn't get any response from quickscrape, even:
quickscrape --version
gives no …
The standard way of representing an LRU is to have nodes be stored in a hashmap or binary search tree, with lookup-by-key, and in a linked-list which represents recency. This allows O(1) or O(logn) lo…