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 2323
2424import org .apache .ibatis .cache .Cache ;
2525import org .apache .ibatis .cache .CacheException ;
26- import org .apache .ibatis .cache .decorators .FifoCache ;
2726import org .apache .ibatis .cache .decorators .LoggingCache ;
27+ import org .apache .ibatis .cache .decorators .LruCache ;
2828import org .apache .ibatis .cache .decorators .ScheduledCache ;
2929import org .apache .ibatis .cache .decorators .SerializedCache ;
3030import org .apache .ibatis .cache .decorators .SynchronizedCache ;
@@ -99,7 +99,7 @@ private void setDefaultImplementations() {
9999 if (implementation == null ) {
100100 implementation = PerpetualCache .class ;
101101 if (decorators .size () == 0 ) {
102- decorators .add (FifoCache .class );
102+ decorators .add (LruCache .class );
103103 }
104104 }
105105 }
You can’t perform that action at this time.
0 commit comments