If i do a mysql-select within the ts-setup and call the result of this select in, lets say, three extensions placed on the same site, does that still mean, that this certain mysql-select is done exactly once within each call of the site?

If so, it would be smarter to do the mysql-select in the typoscript and give the result to the extensions, so i dont have to do the same mysql-select over and over for each extension again, right?

Or is the text from the typoscript handled another way?

Thanx in advance, Jayden

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

If that are exactly the same request, it will hopefully cached by mysql-query-cache. But, you are right, the request will be send three times.

If i understand you right, you think about doing sth. like:

lib.mySqlSelect = CONTENT
lib.mySqlSelect ...
plugin.tx_yourplugin.select.cObject < lib.mySqlSelect

That would result in three SQL Querys too.

But you could use an LOAD_REGISTER:

plugin.tx_yourplugin.select = {register:mySqlSelect}
plugin.tx_yourplugin.select.insertData = 1

page.1 = LOAD_REGISTER
page.1.mySqlSelect = CONTENT
page.1.mySqlSelect ...

Assuming "select" has stdWrap property.

If you are writing a new extension, you could use $GLOBALS['TSFE']->register[$register] = $theValue;

link|improve this answer
Thank you maholz, your answer has been greatly appreciated. I am using LOAD_REGISTER allready, but im still not very sure about this, as i dont really understand how load_register works. So did i understand you right, that even though each extension calls the values from TS for its own, that a DB-select placed in a LOAD_REGISTER is not repeated, once it has been done? its values are just safed and reused? Also, you are writing i could use "$GLOBALS['TSFE']->register[$register]" in a new extension, is there adifference between this and LOAD_REGISTER, as described above? Thanks very much, Jayden – jayden Feb 17 at 13:05
have a look at api.typo3.org/typo3v4/current/html/… – maholtz Feb 17 at 13:25
and api.typo3.org/typo3v4/current/html/… so, there is a difference. If someone request RESTORE_REGISTER too often. – maholtz Feb 17 at 13:32
yea, thanx, this may help me to understand load_register better, but is there a difference between $GLOBALS['TSFE']->register[$register] and the example above, or is it just a way to call the load_Register? – jayden Feb 17 at 13:35
Could you give me an example, how to use $GLOBALS['TSFE']->register[$register] with a DB-select from Typoscript? Theres only very few articles online, handeling this topic... – jayden Feb 17 at 14:59
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.