Pascal Bartl
Quiz por , criado more than 1 year ago

TYPO3 CD 2020 (zweite Auflage) Quiz sobre 3.6 Performance and Caching, criado por Pascal Bartl em 09-04-2021.

1
0
0
Pascal Bartl
Criado por Pascal Bartl mais de 3 anos atrás
Fechar

3.6 Performance and Caching

Questão 1 de 7

1

Which cache groups exist in the TYPO3 core? (1)

Selecione uma ou mais das seguintes:

  • pages

  • backend and frontend

  • pages, backend and frontend

  • pages, system and all

  • pages, system and core

Explicação

Questão 2 de 7

1

How can the page cache be cleared automatically after a record has been saved, even if the plugin is cached? (1)

Selecione uma ou mais das seguintes:

  • This is not possible

  • This is not possible without disabling the plugin cache

  • By using the TypoScript setting persistence.enableAutomaticCacheClearing

  • By using the User TSconfig setting TCEMAIN.clearCacheCmd

  • By using the Page TSconfig setting TCEMAIN.clearCacheCmd

Explicação

Questão 3 de 7

1

In which file is the default caching framework configuration stored (alongside other configuration)? (1)

Selecione uma ou mais das seguintes:

  • typo3/sysext/core/ext_tables.php

  • typo3/sysext/core/ext_localconf.php

  • typo3/sysext/cache/Configuration/DefaultConfiguration.php

  • typo3/sysext/core/Configuration/DefaultConfiguration.php

Explicação

Questão 4 de 7

1

How can you clear all caches at once? (2)

Selecione uma ou mais das seguintes:

  • By executing the clearAllCaches() command with the DataHandler

  • By executing the clear_cacheCmd('all') command with the DataHandler

  • By executing the flushCaches() method of the Cache Manager

  • By executing the flush() method of the Cache Manager

  • By executing the flushAll() method of the Action Controller

Explicação

Questão 5 de 7

1

What are the differences between methods get() and getCache() of the Cache Manager? (2)

Selecione uma ou mais das seguintes:

  • get() determines the cache

  • getCache() determines the cache

  • get() retrieves data from the cache

  • getCache() retrieves data from the cache

  • get() and getCache() are identical functions

Explicação

Questão 6 de 7

1

How can a developer check whether a cache entry exists for a specific identifier? (2)

Selecione uma ou mais das seguintes:

  • By using method has()

  • By using method hasCache()

  • By using method entryExists()

  • By testing against the value false

  • By testing against the value -1

Explicação

Questão 7 de 7

1

How can you globally deactivate the caching framework? (1)

Selecione uma ou mais das seguintes:

  • By iterating all registered caches and setting them to the NullBackend

  • By using the configuration
    $GLOBALS['TYPO3_CONF_VARS']['SYS']['useCachingFramework'] = 0

  • By using the configuration
    $GLOBALS['TYPO3_CONF_VARS']['SYS']['useCachingFramework'] = false

  • By using the configuration
    $GLOBALS['TYPO3_CONF_VARS']['SYS']['disableCachingFramework'] = 1

  • By using the configuration
    $GLOBALS['TYPO3_CONF_VARS']['SYS']['disableCachingFramework'] = true

Explicação