InterviewSolution
Saved Bookmarks
| 1. |
What Is Dogpile Effect? How Can You Prevent This Effect? |
|
Answer» If the CACHE expires, and WEBSITES are hit by multiple requests made by the client at the same TIME, this EFFECT is known as Dogpile effect. This effect can be PREVENTED by using semaphore lock. In this system when value expires, first process acquires the lock and starts generating new value. If the cache expires, and websites are hit by multiple requests made by the client at the same time, this effect is known as Dogpile effect. This effect can be prevented by using semaphore lock. In this system when value expires, first process acquires the lock and starts generating new value. |
|