We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca7753 commit fc3401bCopy full SHA for fc3401b
src/main/java/org/apache/ibatis/cache/decorators/BlockingCache.java
@@ -24,12 +24,14 @@
24
import org.apache.ibatis.cache.CacheException;
25
26
/**
27
- * Simple blocking decorator
+ * <p>Simple blocking decorator
28
*
29
- * Simple and inefficient version of EhCache's BlockingCache decorator.
+ * <p>Simple and inefficient version of EhCache's BlockingCache decorator.
30
* It sets a lock over a cache key when the element is not found in cache.
31
* This way, other threads will wait until this element is filled instead of hitting the database.
32
33
+ * <p>By its nature, this implementation can cause deadlock when used incorrecly.
34
+ *
35
* @author Eduardo Macarron
36
37
*/
0 commit comments