$smwgQMaxInlineLimit
Configuration parameter details: | |
Name | $smwgQMaxInlineLimit |
Description | Sets the maximal number of rows ever printed by queries |
Default setting | 500 |
Software | Semantic MediaWiki |
Since version | |
Until version | still available |
Configuration | Query settings · inline queries · Query features · Query performance |
Keyword | number of rows |
$smwgQMaxInlineLimit
is a configuration parameter that sets the maximal number of rows ever printed by a single embedded query on a single page or a query on special page "Ask"Provides an interface that assists users with creating and executing semantic queries, even if a value for the limit parameter was specified explicitly. The configuration parameter was introduced in Semantic MediaWiki 1.0Released on 31 December 2007 and compatible with MW 1.9.x - 1.12.x..
Note that the limit set with this configuration parameter does not apply to result format "Count"Returns just the number of results, instead of the results themselves..
250
" as a default value for the limit parameter.
500
" if the limit set for it surpassed the limit which was set with this configuration parameter.2
Default setting[edit]
$smwgQMaxInlineLimit = 500;
This means that a maximum of "500" results will be displayed even if one specifies a higher value for the limit parameter of queries.
Changing the default setting[edit]
To modify the setting to this configuration parameter, add one of the following lines to your "LocalSettings.php" file after the enableSemantics()
call:
- Reduce the maximum limit
$smwgQMaxInlineLimit = 250;
This means that a maximum of "250" results will be displayed for embedded queries or on special page "Ask"Provides an interface that assists users with creating and executing semantic queries even if one specifies a higher value for the limit parameter of queries.
- Increase the maximum limit
$smwgQMaxInlineLimit = 1000;
This means that a maximum of "1000" results will be displayed for embedded queries or on special page "Ask"Provides an interface that assists users with creating and executing semantic queries even if one specifies a higher value for the limit parameter of queries.
See also[edit]
- Help page on configuration parameter
$smwgQMaxLimit
Sets the maximal number of results ever retrieved by queries - Help page on configuration parameter
$smwgQUpperbound
Sets the upper bound of the offset used for the maximal number of rows ever printed in an embedded query
References
- ^ Semantic MediaWiki: GitHub pull request gh:smw:2474
- ^ Semantic MediaWiki: GitHub pull request gh:smw:242