File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/apache/ibatis/mapping Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 23
23
24
24
import org .apache .ibatis .cache .Cache ;
25
25
import org .apache .ibatis .cache .CacheException ;
26
- import org .apache .ibatis .cache .decorators .FifoCache ;
27
26
import org .apache .ibatis .cache .decorators .LoggingCache ;
27
+ import org .apache .ibatis .cache .decorators .LruCache ;
28
28
import org .apache .ibatis .cache .decorators .ScheduledCache ;
29
29
import org .apache .ibatis .cache .decorators .SerializedCache ;
30
30
import org .apache .ibatis .cache .decorators .SynchronizedCache ;
@@ -99,7 +99,7 @@ private void setDefaultImplementations() {
99
99
if (implementation == null ) {
100
100
implementation = PerpetualCache .class ;
101
101
if (decorators .size () == 0 ) {
102
- decorators .add (FifoCache .class );
102
+ decorators .add (LruCache .class );
103
103
}
104
104
}
105
105
}
You can’t perform that action at this time.
0 commit comments