Skip to content

Commit

Permalink
Merge branch '4.6' into generate-solr-config
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis committed Sep 2, 2024
2 parents a0c01bb + 421a738 commit e997483
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
5 changes: 4 additions & 1 deletion resources/platformsh/ibexa-commerce/4.6/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ relationships:
variables:
php:
# Example of setting php.ini config
#"display_errors": "On"
# Display of errors should be disabled in production.
display_errors: Off
display_startup_errors: Off

memory_limit: 512M
# The default OPcache configuration is not suited for Symfony applications
opcache.memory_consumption: 256
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ should not remove or drastically change the existing definitions.

<fieldType name="currency" class="solr.CurrencyField" precisionStep="8" defaultCurrency="USD" currencyConfig="currency.xml" />

<fieldType name="random" class="solr.RandomSortField" indexed="true"/>



Expand Down Expand Up @@ -138,6 +139,11 @@ should not remove or drastically change the existing definitions.
-->
<dynamicField name="random*" type="random" indexed="true" stored="false"/>

<!--
This field is required to allow random sorting
-->
<dynamicField name="random*" type="random" indexed="true" stored="false"/>

<!--
This field is required since Solr 4
-->
Expand Down
5 changes: 4 additions & 1 deletion resources/platformsh/ibexa-experience/4.6/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ relationships:
variables:
php:
# Example of setting php.ini config
#"display_errors": "On"
# Display of errors should be disabled in production.
display_errors: Off
display_startup_errors: Off

memory_limit: 512M
# The default OPcache configuration is not suited for Symfony applications
opcache.memory_consumption: 256
Expand Down
5 changes: 4 additions & 1 deletion resources/platformsh/ibexa-headless/4.6/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ relationships:
variables:
php:
# Example of setting php.ini config
#"display_errors": "On"
# Display of errors should be disabled in production.
display_errors: Off
display_startup_errors: Off

memory_limit: 512M
# The default OPcache configuration is not suited for Symfony applications
opcache.memory_consumption: 256
Expand Down
5 changes: 4 additions & 1 deletion resources/platformsh/ibexa-oss/4.6/.platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ relationships:
variables:
php:
# Example of setting php.ini config
#"display_errors": "On"
# Display of errors should be disabled in production.
display_errors: Off
display_startup_errors: Off

memory_limit: 512M
# The default OPcache configuration is not suited for Symfony applications
opcache.memory_consumption: 256
Expand Down

0 comments on commit e997483

Please sign in to comment.