You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple exercise in building a concurrent cache using go and channels.
The cache has in input channel for requests and an output channel for responses
All activity is serialised through the input channel effectively acting as a mutex.
About
Simple exercise in building a concurrent cache using go channels.