Represents a single data file (e.g. .sav) loaded into your project. This is where you can find your questions and variables.
canTellCategoricalFromText
Whether this file type can distinguish between true user-entered text and categorical data that has been stored as text. Useful when automatically configuring a new data file.
caseIdentifiers
Controls how we remember which data rows have been modified or deleted. It may be null (default, prevents rows being modified or deleted), "case number" (which remembers rows according to their position in the data file), or a variable (whose values are used to identify modified or deleted rows).
Each entry is an array of questions. Within each sub-array, every combination of codes will be produced. Can only be nested 2 levels deep.
add_sub_nets
True if the NET rows of the original input questions should be retained in the banner. False to remove these NETs from the banner. The default is true.
add_overall_net
True if a single NET row should be added to the banner that represents all of the input question categories. False to not add an overall NET row. The default is false.
add_question_spans
True if a span of each question name should be added that spans all of the question's categories. False to not add a span for each question name. The default is true.
// Creates a banner of Age, with Gender nested underneath.f.createBanner("BANNER",[[f.getQuestionByName('Age'),f.getQuestionByName('Gender')]])
Example:
// Creates a banner of Age side-by-side with Gender.f.createBanner("BANNER",[[f.getQuestionByName('Age')],[f.getQuestionByName('Gender')]],false,true,false)
Returns SPSS, Triple-S, CSV, IBM SPSS Data Model or SQL, depending on the type of data.
getQuestionByName(name)
Finds a question using its name.
name
Question name. Must be matched exactly. e.g. 'Age'
Returns:
A Question object, or null if there is no such question.
getQuestionsByName(partial_name)
Finds all questions with a particular name, or part of a name.
partial_name
The text we are looking for. The match is not case sensitive.
Returns:
An array of Question objects. As always, the array begins at [0].
Example:
file.getQuestionsByName("Demographic:");
getVariableByName(name)
Finds a variable using its name.
name
Variable name (not label). e.g. 'Q1'. Must be matched exactly.
Returns:
A Variable object, or null if there is no such variable.
getVariablesByName(partial_name)
Finds all variables matching 'partial_name'.
partial_name
We look for variables with that string anywhere in their names. The match is not case sensitive.
Returns:
An array of Variable objects. As always, the array begins at [0].
Example:
file.getVariablesByName("Q1_")
id
Returns the unique internal id of the data file. This remains the same even if the data file is updated with a new name.
moveAfter(to_move, after)
Moves around variables in the list of variables and questions. Variables in a single question will always be kept together, but they will be reordered if necessary.
to_move
The variables to move. This should be an array of Variable objects.
after
The variable after which it will be placed. null to move it to the start of the list.
Example:
dataFile.moveAfter(q3.variables,gender);
name
Gets/sets the name used to refer to this data file. Normally this will be the filename of the data file, including its extension, but not including the directory.
net(variables)
Determines if the net constructed would be 100%.
variables
An array of Variable object, all from this data file.
Create a new JavaScript variable, as in Q. Get your variable code right in Q before trying it here.
source_code
A fragment of JavaScript. Use \n to separate lines.
is_text
Whether the output is a text variable (true or false).
name
The name of the new variable.
label
The label of the new variable.
after
The variable after which this new variable will be placed. Use null to put the variable at the top of your file.
options
Optional. Pass a JavaScript object with any of the following: skipValidation True to skip validation of your JavaScript code. This makes creation of variables much faster, but there is a risk that your new variable will not work. The default is false, so validation is normally performed. accessAllRows See the 'Access all data rows' checkbox in Q. Defaults to false. accelerate See the 'Accelerate (skip logic checks)' checkbox in Q. Defaults to true if the given JavaScript is safe to accelerate. useAllDataFiles See the 'Use variables from all data files' checkbox in Q. Defaults to false.
Create a new R question, as in Q. Get your R code right in Q before trying it here.
source_code
A fragment of R code. Use \n to separate lines.
question_name
The name of the new question (must also be a suitable variable name).
variable_base_name
For single variable questions, this is the variable name. For multi-variable questions, the variable name is the base name with an integer suffix to indicate the order of the variable in the question.
after
The variable after which this new question will be placed. Use null to put the question at the top of your file.
gui_control_code
A fragment of Javascript code to generate GUI controls in the object inspector when this question is edited.
gui_control_values
A JavaScript object to set values for GUI controls. It should be in the format {control_name: control_value}.
varq=data_file.newRVariable("as.numeric(Q3)+10*as.numeric(Q2)","rvar",null,null);// or if you want to give it a dropbox with multiple input guids:letjs_code="form.dropBox({name: 'formInputs', label: 'Inputs', multi: true, types: ['Variable']});";letmultiple_control_values={'formInputs':guids.join(";")};letmulti_input_q=data_file.newRVariable("rowSums(QDataFrame(formInputs))","my_var","label",null,js_code,multiple_control_values);
publishToDisplayrDriveFileName
When non-null, this tells Displayr to write out this data set to Displayr Drive whenever the document is published (usually using Export). The value of this field will be used as the name of the file in Displayr Drive, and will overwrite any existing file with that name.
questions
Gets an array containing all Question objects in this data file. The first question is [0].
Example:
project.dataFiles[0].questions.forEach(function(q){if(q.isHidden)log(q.name+' is hidden');});
remove()
Removes a data file from a project. Once you have called this method you will not be able to use this DataFile object again.
saveAsSPSSOrCSVFile(path, is_unicode)
Exports the data that Q uses for analysis as an SPSS .sav file or .csv file, where the file type is determined by the file name extension supplied in path. Files with other extensions will be saved in CSV format. All modifications done in Q will be saved (e.g. only recoded values will be saved, changed labels will be saved instead of the originals, etc.).
path
A string specifying the path of the file. You will need to double any back slashes. e.g. 'c:\\Users\\bob\\Cola.sav'
is_unicode
Optional. If true, SPSS files will be in Unicode, which is supported by modern SPSS versions. True by default.
setQuestion(new_name, question_type, variables)
Combines the variables into a single question. The variables will be removed from any questions they are already part of. Afterwards the variables will be together and in the order supplied, in the place of the first variable.
new_name
The name for the new question.
question_type
The type of the new question. This can be one of 'Text', 'Number', 'Pick One', 'Text - Multi', 'Number - Multi', 'Pick Any', 'Pick One - Multi', 'Pick Any - Compact', 'Pick Any - Grid', 'Number - Grid', 'Experiment', 'Ranking', 'Date' (date/time).
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: opened new connection for 0
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::serverIsReadOnly [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT @@GLOBAL.read_only AS Value
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:MWSession:gl2d0c4i37fdrb01ssi8v8hdosrflp26'
[session] SessionBackend "gl2d0c4i37fdrb01ssi8v8hdosrflp26" is unsaved, marking dirty in constructor
[DBConnection] Wikimedia\Rdbms\LoadBalancer::getLocalConnection: opened new connection for 0
[DBQuery] Wikimedia\Rdbms\Database::beginIfImplied (LinkCache::fetchPageRow) [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: BEGIN
[DBQuery] LinkCache::fetchPageRow [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model FROM `qwpage` WHERE page_namespace = 0 AND page_title = 'QScript_DataFile' LIMIT 1
[ContentHandler] Registered handler for wikitext: WikitextContentHandler
[DBQuery] WikiPage::pageData [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_namespace,page_title,page_restrictions,page_is_redirect,page_is_new,page_random,page_touched,page_links_updated,page_latest,page_len,page_content_model FROM `qwpage` WHERE page_namespace = 0 AND page_title = 'QScript_DataFile' LIMIT 1
[DBQuery] Title::loadRestrictions [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT pr_type,pr_expiry,pr_level,pr_cascade FROM `qwpage_restrictions` WHERE pr_page = 191
[objectcache] fetchOrRegenerate(qwiki-qw:page-restrictions:v1:191:66615): miss, new value computed
Title::getRestrictionTypes: applicable restrictions to [[QScript DataFile]] are {edit,move}
[DBQuery] MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,temp_rev_user.revactor_actor AS `rev_actor`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `qwrevision` JOIN `qwrevision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `qwcomment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `qwrevision_actor_temp` `temp_rev_user` ON ((temp_rev_user.revactor_rev = rev_id)) JOIN `qwactor` `actor_rev_user` ON ((actor_rev_user.actor_id = temp_rev_user.revactor_actor)) JOIN `qwpage` ON ((page_id = rev_page)) LEFT JOIN `qwuser` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE rev_id = 66615 LIMIT 1
[objectcache] fetchOrRegenerate(global:revision-row-1.29:qwiki-qw:191:66615): miss, new value computed
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecords [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `qwslots` JOIN `qwcontent` ON ((slot_content_id = content_id)) WHERE slot_revision_id = '66615'
[DBQuery] MediaWiki\Storage\NameTableStore::loadTable [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT role_id AS `id`,role_name AS `name` FROM `qwslot_roles` ORDER BY id
[objectcache] fetchOrRegenerate(global:NameTableSqlStore:slot_roles:qwiki-qw): miss, new value computed
[DBQuery] MediaWiki\Storage\NameTableStore::loadTable [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT model_id AS `id`,model_name AS `name` FROM `qwcontent_models` ORDER BY id
[objectcache] fetchOrRegenerate(global:NameTableSqlStore:content_models:qwiki-qw): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
[deprecated] Setting $wgAllowImageTag to true is deprecated since MediaWiki 1.35
[MessageCache] MessageCache using store SqlBagOStuff
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:messages:en-gb'
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:messages:en-gb:status'
[DBQuery] SqlBagOStuff::lock [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT GET_LOCK('qwiki-qw:messages:en-gb', 0) AS lockstatus
[SQLBagOStuff] SqlBagOStuff::lock failed due to timeout for qwiki-qw:messages:en-gb.
[DBQuery] MessageCache::loadFromDB(en-gb)-big [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_title,page_latest FROM `qwpage` WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`' ) AND (page_len > 10000)
[DBQuery] MessageCache::loadFromDB(en-gb)-small [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT /*! STRAIGHT_JOIN */ rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,temp_rev_user.revactor_actor AS `rev_actor`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `qwpage` JOIN `qwrevision` ON ((page_id = rev_page)) JOIN `qwrevision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `qwcomment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `qwrevision_actor_temp` `temp_rev_user` ON ((temp_rev_user.revactor_rev = rev_id)) JOIN `qwactor` `actor_rev_user` ON ((actor_rev_user.actor_id = temp_rev_user.revactor_actor)) LEFT JOIN `qwuser` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title NOT LIKE '%/%' ESCAPE '`' ) AND (page_len <= 10000) AND (page_latest = rev_id)
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecords [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `qwslots` JOIN `qwcontent` ON ((slot_content_id = content_id)) WHERE slot_revision_id = '49313'
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT old_id,old_text,old_flags FROM `qwtext` WHERE old_id = 48591
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:qwiki-qw:tt%3A48591): miss, new value computed
[ContentHandler] Registered handler for javascript: JavaScriptContentHandler
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecords [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `qwslots` JOIN `qwcontent` ON ((slot_content_id = content_id)) WHERE slot_revision_id = '28116'
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT old_id,old_text,old_flags FROM `qwtext` WHERE old_id = 27686
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:qwiki-qw:tt%3A27686): miss, new value computed
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecords [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `qwslots` JOIN `qwcontent` ON ((slot_content_id = content_id)) WHERE slot_revision_id = '942'
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT old_id,old_text,old_flags FROM `qwtext` WHERE old_id = 924
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:qwiki-qw:tt%3A924): miss, new value computed
[DBQuery] MediaWiki\Revision\RevisionStore::loadSlotRecords [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT slot_revision_id,slot_content_id,slot_origin,slot_role_id,content_size,content_sha1,content_address,content_model FROM `qwslots` JOIN `qwcontent` ON ((slot_content_id = content_id)) WHERE slot_revision_id = '17353'
[DBQuery] MediaWiki\Storage\SqlBlobStore::fetchBlobs [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT old_id,old_text,old_flags FROM `qwtext` WHERE old_id = 17180
[objectcache] fetchOrRegenerate(global:SqlBlobStore-blob:qwiki-qw:tt%3A17180): miss, new value computed
[ContentHandler] Registered handler for css: CssContentHandler
[DBQuery] SqlBagOStuff::unlock [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT RELEASE_LOCK('qwiki-qw:messages:en-gb') as lockstatus
[MessageCache] MessageCache::load: Loading en-gb... local cache is empty, global cache is expired/volatile, loading from database
ParserFactory: using default preprocessor
Unstubbing $wgLang on call of $wgLang::unstub from ParserOptions->__construct
[caches] parser: SqlBagOStuff
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
Article::view using parser cache: yes
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:pcache:idoptions:191'
Parser cache options found.
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:pcache:idhash:191-0!canonical'
ParserOutput cache found.
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
Article::view: showing parser cache contents
[DBQuery] OutputPage::addCategoryLinksToLBAndGetResult [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_namespace,page_title,pp_value FROM `qwpage` LEFT JOIN `qwpage_props` ON (pp_propname = 'hiddencat' AND (pp_page = page_id)) WHERE (page_namespace = 14 AND page_title = 'QScript_Reference')
[DBQuery] Wikimedia\Rdbms\DatabaseMysqlBase::serverIsReadOnly [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT @@GLOBAL.read_only AS Value
[objectcache] fetchOrRegenerate(global:rdbms-server-readonly:wikiprodeus001v2mysql-server.mysql.database.azure.com%3A3306:qwiki:): miss, new value computed
[DBReplication] Wikimedia\Rdbms\ChronologyProtector::storeSessionReplicationPosition: DB 'wikiprodeus001v2mysql-server.mysql.database.azure.com:3306' touched
[DBReplication] Wikimedia\Rdbms\ChronologyProtector::shutdown: no master positions to save
OutputPage::haveCacheVaryCookies: no cache-varying cookies found
[DBQuery] Wikimedia\Rdbms\Database::beginIfImplied (ArticleFeedbackv5Permissions::getProtectionRestriction) [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: BEGIN
[DBQuery] ArticleFeedbackv5Permissions::getProtectionRestriction [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT pr_level,pr_expiry FROM `qwpage_restrictions` WHERE pr_page = 191 AND pr_type = 'aft' AND (pr_expiry = 'infinity' OR pr_expiry >= '20241108183846') LIMIT 1
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 191
[DBQuery] LinkBatch::doQuery (for Skin::preloadExistence) [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_namespace,page_title FROM `qwpage` WHERE (page_namespace = 1 AND page_title = 'QScript_DataFile') OR (page_namespace = 4 AND page_title IN ('Privacy_policy','About','General_disclaimer') )
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 191
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 470
[DBQuery] LinkCache::fetchPageRow [0.005s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Pages_with_syntax_highlighting_errors' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:88c86855bb8b2d3c0b7a7b7722906ee59e4b0d4f): miss, new value computed
[DBQuery] Title::getParentCategories [0.002s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 4600
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'QScript' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:a7a80bb2486b073a463ec099cacc69c833c0e4eb): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 474
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'JavaScript' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:ee620923ff5fc510555dc37083a135ee93b5404b): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 477
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Creating_New_Variables' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:8bc71ae340bbf83c4f5ba4b2acfca2fe8fabce95): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 2112
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Q_Technical_Reference' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:1859097d158fc53a0c9136a3df3a478478796838): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 67
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Setting_Up_Data' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:b3f6816a020e34ea26775e7be5ca8ade656a2869): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 2095
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 67
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 67
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Updating_and_Automation' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:00f653669bd8debf6fd64e9dc6c0166249587f2a): miss, new value computed
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 2113
[DBQuery] Title::getParentCategories [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT cl_to FROM `qwcategorylinks` WHERE cl_from = 67
[DBQuery] MediaWiki\User\TalkPageNotificationManager::dbCheckNewUserMessages [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT user_ip FROM `qwuser_newtalk` WHERE user_ip = '10.244.1.13' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Nstab-talk' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:8eee482d2898cbd9f8b29a97b443fa65d3e25f93): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Nstab-talk): miss, new value computed
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:messages:en'
[DBQuery] SqlBagOStuff::fetchBlobMulti [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT keyname,value,exptime FROM `qwobjectcache` WHERE keyname = 'qwiki-qw:messages:en:status'
[DBQuery] SqlBagOStuff::lock [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT GET_LOCK('qwiki-qw:messages:en', 0) AS lockstatus
[SQLBagOStuff] SqlBagOStuff::lock failed due to timeout for qwiki-qw:messages:en.
[DBQuery] MessageCache::loadFromDB(en)-big [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_title,page_latest FROM `qwpage` WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title LIKE '%/en' ESCAPE '`' ) AND (page_len > 10000)
[DBQuery] MessageCache::loadFromDB(en)-small [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT /*! STRAIGHT_JOIN */ rev_id,rev_page,rev_timestamp,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,comment_rev_comment.comment_text AS `rev_comment_text`,comment_rev_comment.comment_data AS `rev_comment_data`,comment_rev_comment.comment_id AS `rev_comment_cid`,actor_rev_user.actor_user AS `rev_user`,actor_rev_user.actor_name AS `rev_user_text`,temp_rev_user.revactor_actor AS `rev_actor`,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `qwpage` JOIN `qwrevision` ON ((page_id = rev_page)) JOIN `qwrevision_comment_temp` `temp_rev_comment` ON ((temp_rev_comment.revcomment_rev = rev_id)) JOIN `qwcomment` `comment_rev_comment` ON ((comment_rev_comment.comment_id = temp_rev_comment.revcomment_comment_id)) JOIN `qwrevision_actor_temp` `temp_rev_user` ON ((temp_rev_user.revactor_rev = rev_id)) JOIN `qwactor` `actor_rev_user` ON ((actor_rev_user.actor_id = temp_rev_user.revactor_actor)) LEFT JOIN `qwuser` ON ((actor_rev_user.actor_user != 0) AND (user_id = actor_rev_user.actor_user)) WHERE page_is_redirect = 0 AND page_namespace = 8 AND (page_title LIKE '%/en' ESCAPE '`' ) AND (page_len <= 10000) AND (page_latest = rev_id)
[DBQuery] SqlBagOStuff::unlock [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT RELEASE_LOCK('qwiki-qw:messages:en') as lockstatus
[MessageCache] MessageCache::load: Loading en... local cache is empty, global cache is expired/volatile, loading from database
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Nstab-talk/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:6144e8cf16ba4bba07bd834794833f94656643d1): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Nstab-talk/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-view-view' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:4f61494f677857a05bbdeb442fa3cbf51f5f0b54): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Qdefault-view-view): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-view-view/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:c718c4057adec06d42a79be9d9eded472098839c): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Qdefault-view-view/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-action-viewsource' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:3a13effebefaa84374e82f5a7e0f9b491ebaa9a0): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Qdefault-action-viewsource): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-action-viewsource/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:adc8a68a38fad2f7ea926f6b94404d8004a69ebc): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Qdefault-action-viewsource/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-view-history' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:8d1ada0c174f59e50cb4a5999064c76f06fb7228): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Qdefault-view-history): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Qdefault-view-history/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:7f0328771d30d784e8930f96a1c7e1bc1dc427f2): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Qdefault-view-history/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Http://www.q-researchsoftware.com' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:b49e3a93521b1bff71307d9e7fe5cc6b01e9885b): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Http%3A//www.q-researchsoftware.com): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Http://www.q-researchsoftware.com/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:9d28b602d33224a88d9ef72601458fec0d55dd42): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Http%3A//www.q-researchsoftware.com/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Back_to_Q_home_page' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:4b49bdf01e37f68412d4892b486ca3bdf975f706): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Back_to_Q_home_page): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Back_to_Q_home_page/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:b3feb820f4d9cbbb638c71b32c5f6dbdd0268f5c): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Back_to_Q_home_page/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Main_Page' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:8f9e9b397d590520d0938b3a063c1c0b58ba8445): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Main_Page): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Main_Page/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:a51dc04dd9ac432abbba7646f47831357f3d6995): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Main_Page/en): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Wiki_home_page' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:aa97b17d87f1db0c9a13497ecdf296861e87a75a): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:cfc446277b11d7cbbb19c96e69340f57:Wiki_home_page): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 8 AND page_title = 'Wiki_home_page/en' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:8:a09c62712f558d3ce502a02ed539afe03db2db32): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:messages-big:f6c4f725a607bfe8fa0cf0c05ee4f470:Wiki_home_page/en): miss, new value computed
[DBQuery] CategoryTree::renderChildren [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_namespace,page_title,page_is_redirect,page_len,page_latest,cl_to,cl_from,cat_id,cat_title,cat_subcats,cat_pages,cat_files FROM `qwpage` JOIN `qwcategorylinks` FORCE INDEX (cl_sortkey) ON ((cl_from = page_id)) LEFT JOIN `qwcategory` ON ((cat_title = page_title) AND page_namespace = 14) WHERE cl_to = 'Q_Technical_Reference' AND cl_type IN ('page','subcat') ORDER BY cl_type, cl_sortkey LIMIT 200
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model FROM `qwpage` WHERE page_namespace = 0 AND page_title = 'Top_20_Common_Problems_When_Using_Q' LIMIT 1
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model FROM `qwpage` WHERE page_namespace = 0 AND page_title = 'Release_Notes' LIMIT 1
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Installing_and_Updating_Q' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:eef0cbd7ddd522d5eabb5f80d1f81fe71513546e): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Creating_And_Modifying_Tables' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:e803dfdbf58cb95105aa3fb8934f4cddeb2d7c94): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Charts' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:8610e3e26dd7e3b13329a05dea5f2f41834060d5): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Multivariate_Statistics' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:d2f3fafe2707af09bf289f893c6e166f82fd4f00): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Sharing_Data_And_Results' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:05cf4f4b3ac9b44d88209a39295e43ea7c247921): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Troubleshooting' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:285ec850c11d78bac10f6bfa31b69a37f1b257c9): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Tests_Of_Statistical_Significance' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:db6d637f4b744f65e8b24a6613498e3d7c2c3c5e): miss, new value computed
[DBQuery] LinkCache::fetchPageRow [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_id,page_len,page_is_redirect,page_latest,page_restrictions,page_content_model,page_touched FROM `qwpage` WHERE page_namespace = 14 AND page_title = 'Video_Library' LIMIT 1
[objectcache] fetchOrRegenerate(qwiki-qw:page:14:bc836260eabb4a5e9e8242c18bb651f43c574602): miss, new value computed
[DBQuery] ResourceLoaderWikiModule::preloadTitleInfo [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT page_namespace,page_title,page_touched,page_len,page_latest FROM `qwpage` WHERE (page_namespace = 8 AND page_title IN ('Common.css','Noscript.css','Print.css','Qdefault.css') )
[objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:qwiki-qw:14c11546ed1a7d8fbe1e5e7c4c6657b051c7b708): miss, new value computed
[objectcache] fetchOrRegenerate(global:resourceloader-titleinfo:qwiki-qw:da39a3ee5e6b4b0d3255bfef95601890afd80709): miss, new value computed
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed
Title::getRestrictionTypes: applicable restrictions to [[QScript DataFile]] are {edit,move}
User::getBlockedStatus: checking blocked status for 10.244.1.13
[DBQuery] MediaWiki\Block\DatabaseBlock::newLoad [0.001s] wikiprodeus001v2mysql-server.mysql.database.azure.com:3306: SELECT ipb_id,ipb_address,ipb_timestamp,ipb_auto,ipb_anon_only,ipb_create_account,ipb_enable_autoblock,ipb_expiry,ipb_deleted,ipb_block_email,ipb_allow_usertalk,ipb_parent_block_id,ipb_sitewide,comment_ipb_reason.comment_text AS `ipb_reason_text`,comment_ipb_reason.comment_data AS `ipb_reason_data`,comment_ipb_reason.comment_id AS `ipb_reason_cid`,actor_ipb_by.actor_user AS `ipb_by`,actor_ipb_by.actor_name AS `ipb_by_text`,ipb_by_actor FROM `qwipblocks` JOIN `qwcomment` `comment_ipb_reason` ON ((comment_ipb_reason.comment_id = ipb_reason_id)) JOIN `qwactor` `actor_ipb_by` ON ((actor_ipb_by.actor_id = ipb_by_actor)) WHERE ipb_address = '10.244.1.13' OR ((ipb_range_start LIKE '0AF4%' ESCAPE '`' ) AND (ipb_range_start <= '0AF4010D') AND (ipb_range_end >= '0AF4010D'))
[objectcache] fetchOrRegenerate(qwiki-qw:page-content-model:66615): miss, new value computed