Caches: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Data Structures =Overview= =LRU Cache= * An implementation where get() is O(1) and put() is O(n): * An implementation where both g...")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 5: Line 5:
=Overview=
=Overview=


=LRU Cache=
=Cache Types=
 
{{Internal|LRU Cache#Overview|LRU Cache}}
* An implementation where get() is O(1) and put() is O(n):
* An implementation where both get() and put() are O(1):

Latest revision as of 19:22, 20 October 2021

Internal

Overview

Cache Types

LRU Cache