How to evaluate a single TypoSript object creation?

I would like to compare one generation of TypoScript objects for performance management, is it possible, perhaps, with some stdWrap methods?

An example of TS objects that I would like to test:

Test 1

  page.10 = RECORDS
    page.10 {
        tables = pages
        source = 1
        dontCheckPid  = 1
        conf.pages = TEXT
        conf.pages.field = title
    }

Test 2

page.20 = CONTENT
page.20 {
   table = tt_content
   select {
       pidInList = 0
       recursive = 99
       where = uid = 1
   }
}

I need the generation time of each object and the number of running requests.

+3
source share
1 answer

I assume this can be done through Extension. I assume that it is possible to connect (or xclass) the database level (e.g. DBAL). In your extension, you can simply test various TypoScript settings with$this->cObj->cObjGetSingle($this->conf['test1'],$this->conf['test1.'],'test1');

, t3lib_timeTrack, , , . AFAIK , , Admin-Panel ( ).

+1

All Articles