Skip to content

Wolwer1nE/cp-lab3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Limited Access Cache

  1. Реализуйте класс для работы с кэшем, поддерживающим конечное число обращений.
  2. Кэш хранит пары ключ-значение.
  3. Для каждого ключа известно число обращений, после которого кэш должен очиститься.
  4. После каждого обращения нужно уменьшить число обращений на 1.
  5. Если значения по ключу нет или если число обращений равно 0, то кэш веозвращает null
  6. Если пара ключ-значение задана без указания числа обращений, то число обращений равно 1.
  7. Нужна возможность получить статистику работы кэша в виде списка обращений: Ключ, Значение, Сколько осталось обращений.
  8. Разработку вести через TDD.

Limited Access Cache (Eng)

  1. Implement a class to work with a cache that supports a finite number of hits.
  2. The cache stores key-value pairs.
  3. For each key, the number of hits is known, after which the cache must be cleared.
  4. After each call, you need to reduce the number of hits by 1.
  5. If there is no value for the key or if the number of hits is 0, then the cache returns null
  6. If a key-value pair is set without specifying the number of hits, then the hit count is 1.
  7. You need the ability to get cache statistics in the form of a list of hits: Key, Value, How many hits left.
  8. Use TDD.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published