SPR-6775
+ increase size to 256 git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2873 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
898a30ae3f
commit
2130d7f7e7
|
|
@ -30,11 +30,12 @@ import org.springframework.core.io.ResourceLoader;
|
|||
* (i.e. per ".class" file).
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
* @author Costin Leau
|
||||
* @since 2.5
|
||||
*/
|
||||
public class CachingMetadataReaderFactory extends SimpleMetadataReaderFactory {
|
||||
|
||||
private static final int MAX_ENTRIES = 50;
|
||||
private static final int MAX_ENTRIES = 256;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
private static final <K, V> Map<K, V> createLRUCache() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue