Cache that always returns immediate response?
- by Col Wilson
I have a web service that takes a while to build a response despite being tuned as best I can.
What I'd like is some sort of cache sitting in front of the service which would always return the last known value from the service, but at the same time pass the request back to the service to build an up to date response for the next request.
I'm…