PSCache
PSCache copied to clipboard
Generic PowerShell cache implementation
Investigate and implement an LRU-K cache class (see http://www.cs.iit.edu/~yee/classes/cs525aut04/oneil93lruk.pdf)
Implement an LIRS (Low Inter-reference Recency Set) cache class (see http://web.cse.ohio-state.edu/hpcs/WWW/HTML/publications/abs02-6.html)
A cache replacement policy is only "optimally efficient" in relation to the access patterns of the context in which it is used. Investigate and implement/generate: - A testing harness to...