Set the task. Create a universal cache implementation.

What is this cache cache?
What is it for?
Where is it applied (the simplest options)?
What literature on this can be read?

The full version of the assignment is as follows:

Create a universal implementation cache (s) using the algorithms below. All caches must support thread safe mode, be universal and not use any third-party developers other than JSE.

Least Recently Used (LRU) cache
Least Frequently Used (LFU) cache

  • 2
    Not everyone who knows what a cache can create a universal implementation. Where such tasks are given? - Sergey
  • Caching is a rather extensive topic and it is impossible to give a simple answer to your question. Try searching for materials in a search engine (there are a lot of them) and ask a more precise question. From the reference : Вопросы должны быть узкими — если для ответа на вопрос требуется написать книгу, он явно не для этого ресурса. - default locale
  • Thanks for the answer))). I hope my task does not consist of volume in the book. I really hope for it))). The full version of the task is as follows: Create a universal implementation of the cache (s) using the algorithms below. All caches must support thread safe mode, be universal, and not use any third-party developers other than JSE. Least Recently Used (LRU) cache Least Frequently Used (LFU) cache - Paul

0