
|
If you were logged in you would be able to see more operations.
|
|
|
|
In the method Cache.getFromCache(String, int, String), updateState.startUpdate() gets called.
updateState.completeUpdate() only gets called in the methode Cache.putInCache(...).
Therefore, If you try to read from the cache, miss, and then you don't put anything in the cache for that key, the next time getFromCache(...) gets called for that same key, the thread will wait forever for the update status to be changed to complete.
|
|
Description
|
In the method Cache.getFromCache(String, int, String), updateState.startUpdate() gets called.
updateState.completeUpdate() only gets called in the methode Cache.putInCache(...).
Therefore, If you try to read from the cache, miss, and then you don't put anything in the cache for that key, the next time getFromCache(...) gets called for that same key, the thread will wait forever for the update status to be changed to complete. |
Show » |
|