$smwg­Query­Result­Non­Embedded­Cache­Lifetime

From Linux Web Expert


Template:Interlanguagelink: en
Configuration parameter details:
Name $smwgQueryResultNonEmbeddedCacheLifetime
Description Sets the cache lifetime of non-embedded queries and their results fetched from the query engine
Default setting 60 * 10
Software Semantic MediaWiki
Since version
Until version still available
Configuration Cache
Keyword caching · object cache · performance · query performance · query result cache · browsing interface · experimental


__NOBREADCRUMBLINKS__

$smwgQueryResultNonEmbeddedCacheLifetime is a configuration parameter that sets the cache lifetime of non-embedded queries and their results, e.g. browsing interfaces such as special page "Ask"Provides an interface that assists users with creating and executing semantic queries, etc. or from API fetched from the query engine. It was introduced in Semantic MediaWiki 2.5.0Released on an unknown date unknown versions of MediaWiki.12

Settings to this configuration parameter only take effect if the query results cache was enabled.
This configuration parameter can also be used to minimize a possible denial-of-service attacks by preventing an advisory to make unlimited query requests from either special page "Ask"Provides an interface that assists users with creating and executing semantic queries or the API modules that may lock the database due to complex query answering and instead being rerouted to the cache once a result has been computed.
Non-embedded queries cannot not be tracked using embedded query updates since the subject is being missing that would identify the entity. Therefore an auto-purge mechanism as in case of an embedded entity is not possible hence the lifetime should be carefully selected to provide the necessary means for a user and the application.

Default setting

$smwgQueryResultNonEmbeddedCacheLifetime = 60 * 10;

This means that by default lifetime of the query result cache is ten minutes.

Changing the default setting

To modify the setting to this configuration parameter, add one of the following lines to your "LocalSettings.php" file after the enableSemantics() call:

Disable the caching for non-embedded queries
$smwgQueryResultNonEmbeddedCacheLifetime = 0;

or

$smwgQueryResultNonEmbeddedCacheLifetime = false;
Extend the cache lifetime to an hour
$smwgQueryResultNonEmbeddedCacheLifetime = 60 * 60;

See also

Query result caching
Embedded query updates
Other
#scite could not render a citation text for reference "gh:smw:2096" because type "pullrequest" was not assigned to a template.

References

  1. ^ gh:smw:1251 
  2. ^ gh:smw:2096