Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Thread-Safe Inference Result Cache

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Thread-Safe Inference Result Cache. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Arrowstreet Capital's model inference service repeatedly requests results for the same input features. Implement a fixed-capacity, thread-safe least recently used (LRU) cache that stores pre-computed inference results.

The cache must support get and put operations. A successful get marks the key as most recently used. When inserting a new key would exceed capacity, evict the least recently used key. Updating an existing key also makes it most recently used. Every cache operation must be protected so concurrent callers cannot corrupt the cache's internal state.

Formal Specification

Implement cache_inference_results(capacity, operations).

  • capacity is an integer greater than zero.
  • operations is a list of dictionaries. Each dictionary is either {"op": "get", "key": string} or {"op": "put", "key": string, "value": integer}.
  • Process operations in the supplied order and return a list containing the result of every get operation.
  • Return the stored integer for a hit and None for a miss.
  • The implementation must use a lock around shared cache state. The returned order follows the input operation order, while the cache class itself must be safe for concurrent callers.

Constraints

  • 1 <= capacity <= 10^5
  • 1 <= len(operations) <= 2 * 10^5
  • Keys are non-empty strings with length at most 64
  • Values fit within a signed 32-bit integer
  • Every operation is valid

Function Signature

def cache_inference_results(capacity, operations):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output