Skip to content

Commit

Permalink
try max 767 for pageSourcePool
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 14, 2024
1 parent 2e417c9 commit 44586f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/PageSourcePool.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
public final class PageSourcePool implements Dumpable {
// TODO must not be thread safe, is used in sync block only
private final Map<String, SoftReference<PageSource>> pageSources = new ConcurrentHashMap<String, SoftReference<PageSource>>();
private int maxSize_min = 1000;
private int maxSize_min = 767;
private PageSourcePoolWatcher watcher;
private Object token = new SerializableObject();
private MappingImpl mapping;
Expand Down

0 comments on commit 44586f9

Please sign in to comment.