File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/resources/crafter/studio Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -740,8 +740,12 @@ studio.search.timeout.connect: -1
740740studio.search.timeout.socket : -1
741741# The number of threads to use, if set to -1 the default will be used
742742studio.search.threads : -1
743- # The number of threads to use, if set to -1 the default will be used
743+ # Whether to enable TCP keep-alive on search sockets (boolean)
744744studio.search.keepAlive : false
745+ # The max total connections, if set to -1 the default will be used
746+ studio.search.maxTotalConnections : -1
747+ # The max connections per route, if set to -1 the default will be used
748+ studio.search.maxConnectionsPerRoute : -1
745749# Suffix added to the name for authoring indexes
746750studio.search.index.suffix : -authoring
747751# Name of the field for paths
Original file line number Diff line number Diff line change 2727 <property name =" socketTimeout" value =" #{studioConfiguration.getProperty('studio.search.timeout.socket')}" />
2828 <property name =" threadCount" value =" #{studioConfiguration.getProperty('studio.search.threads')}" />
2929 <property name =" socketKeepAlive" value =" #{studioConfiguration.getProperty('studio.search.keepAlive')}" />
30+ <property name =" maxTotalConnections" value =" #{studioConfiguration.getProperty('studio.search.maxTotalConnections')}" />
31+ <property name =" maxConnectionsPerRoute" value =" #{studioConfiguration.getProperty('studio.search.maxConnectionsPerRoute')}" />
3032 </bean >
3133
3234 <bean id =" authoringSearchService" class =" org.craftercms.studio.impl.v2.service.search.PermissionAwareSearchService" >
You can’t perform that action at this time.
0 commit comments