I have a section with 54K records. If i want to create a new record, it takes around 6 seconds before the entry form opens, which is quite annoying. The section_id =3
This is due to this query:
SELECT id as value, title as text
FROM #__js_res_record
WHERE hidden = 0
AND section_id = 2
AND type_id IN(2)
AND id NOT IN(SELECT record_id
FROM hsb0a_js_res_record_values
WHERE field_id = 8)
field_id =8 is a child field from another section (section_id =2)
The result is 8 records which has nothing to do with starting a new record.
I have a section with 54K records. If i want to create a new record, it takes around 6 seconds before the entry form opens, which is quite annoying. The section_id =3 This is due to this query:
field_id =8 is a child field from another section (section_id =2)
The result is 8 records which has nothing to do with starting a new record.