有人知道以下查询的来源吗?当我在TCA中使用内联类型来关联tt_content
记录时,由于一个文件夹中有大量tt_content
条记录,因此我在这种关系中遇到了巨大的性能问题。 (ID:45)
SELECT tt_content.uid
, tt_content.header
, tt_content.subheader
, tt_content.bodytext
, tt_content.t3ver_id
, tt_content.t3ver_state
, tt_content.t3ver_wsid
, tt_content.t3ver_count
, tt_content.CType
, tt_content.hidden
, tt_content.starttime
, tt_content.endtime
, tt_content.fe_group
FROM tt_content, pages
WHERE pages.uid=tt_content.pid
AND pages.deleted = 0
AND tt_content.deleted = 0
AND 1=1
AND tt_content.pid = 45
AND tt_content.sys_language_uid IN (-1,0)
我使用此配置:
'content_elements' => [
'displayCond' => [
'OR' => [
'FIELD:tasktype:=:1',
'FIELD:tasktype:=:5'
]
],
'exclude' => true,
'l10n_mode' => 'mergeIfNotBlank',
'label' => 'content',
'config' => [
'type' => 'inline',
'allowed' => 'tt_content',
'foreign_table' => 'tt_content',
'foreign_sortby' => 'sorting',
'foreign_field' => 'tx_contentmanager_related_content',
'minitems' => 0,
'maxitems' => 99,
'appearance' => [
'collapseAll' => true,
'expandSingle' => true,
'levelLinksPosition' => 'bottom',
'useSortable' => true,
'showPossibleLocalizationRecords' => true,
'showRemovedLocalizationRecords' => true,
'showAllLocalizationLink' => true,
'showSynchronizationLink' => true,
'enabledControls' => [
'info' => false,
]
]
]
],
答案 0 :(得分:1)
我调试了Core-File:/sysext/backend/Classes/Form/FormDataProvider/AbstractItemProvider.php
问题似乎在于tt_content记录的翻译处理。
$GLOBALS['TCA']['tt_content']['columns']['l18n_parent']['config']['foreign_table_where'] = AND tt_content.pid=###CURRENT_PID### AND tt_content.sys_language_uid IN (-1,0)
但我不知道为什么必须提取当前pid中的所有内容。 作为临时解决方案,我更改了TCA条目,因为我们没有在页面上使用tt_content而且还没有翻译。 我不确定这是不是一个好主意,但此时它解决了我们编辑的性能问题。
$GLOBALS['TCA']['tt_content']['columns']['l18n_parent']['config']['foreign_table_where'] = 'AND tt_content.pid = -1 AND tt_content.sys_language_uid IN (-1,0)';