Google News
logo
DevOps - Interview Questions
Explain what Dogpile effect is? How can you prevent this effect?
Dogpile effect is referred to the event when a cache expires, and websites are hit by the multiple requests made by the client at the same time. This effect can be prevented by using a semaphore lock. In this system when value expires, the first process acquires the lock and starts generating new value.
Advertisement