Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d85e1cd

Browse files
committedFeb 25, 2025·
11.1: * [Worklists/Search/Performance] Improved the performance of many complex search queries by running some subqueries independently and merging by IDs. This is enabled by default and can be disabled from the APP_OPT_SQL_SUBQUERY_TO_IDS configuration option.
1 parent e9b3ac9 commit d85e1cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎libs/devblocks/framework.defaults.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
define('APP_OPT_FULLTEXT_THRESHOLD_EXISTS', 10000);
190190

191191
if(!defined('APP_OPT_SQL_SUBQUERY_TO_IDS'))
192-
define('APP_OPT_SQL_SUBQUERY_TO_IDS', false);
192+
define('APP_OPT_SQL_SUBQUERY_TO_IDS', true);
193193

194194
if(!defined('APP_OPT_SQL_SUBQUERY_TO_IDS_LIMIT'))
195195
define('APP_OPT_SQL_SUBQUERY_TO_IDS_LIMIT', 500);

0 commit comments

Comments
 (0)
Please sign in to comment.