You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oabrivard 230de24e7c Added exercises source code 2 years ago
..
README.md Added exercises source code 2 years ago
check_test.go Added exercises source code 2 years ago
main.go Added exercises source code 2 years ago
mockdb.go Added exercises source code 2 years ago
mockserver.go Added exercises source code 2 years ago

README.md

Race condition in caching scenario

Given is some code to cache key-value pairs from a mock database into the main memory (to reduce access time). The code is buggy and contains a race condition. Change the code to make this thread safe.

Also, try to get your solution down to less than 30 seconds to run tests. Hint: fetching from the database takes the longest.

Note: Map access is unsafe only when updates are occurring. As long as all goroutines are only reading and not changing the map, it is safe to access the map concurrently without synchronization. (See https://golang.org/doc/faq#atomic_maps)

Background Reading

Test your solution

Use the following command to test for race conditions and correct functionality:

go test -race

Correct solution: No output = solution correct:

$ go test -race
$

Incorrect solution:

==================
WARNING: DATA RACE
Write by goroutine 7:
...
==================
Found 3 data race(s)

Additional Reading

High Performance Caches in Production