[TYPO3-core] RFC #11027: Warning is issued when creating first template
Xavier Perseguers
typo3 at perseguers.ch
Sun Jul 12 14:22:03 CEST 2009
Hi Rupert,
> I'm quite sure that your patch is not needed anymore because #11285 should
> fix this issue too.
>
> the problem you described was caused by a tcemain action (saving a
> tstemplate record) which called flushByTag() to clear a nonexisting
> page_cache entry.
>
> flushByTag() looked like this until #11285 was commited:
>
> ....
> public function flushByTag($tag) {
> foreach ($this->findIdentifiersByTag($tag) as $entryIdentifier) {
> $this->remove($entryIdentifier);
> }
> }
>
> now it looks like this:
>
> public function flushByTag($tag) {
> $GLOBALS['TYPO3_DB']->exec_DELETEquery(
> $this->cacheTable,
> $this->getListQueryForTag($tag)
> );
> }
>
> this works way faster and should fix also #11027, because
> findIdentifiersByTag() is not called anymore.
Then could you please take care of do the appropriate actions in
bugtracker (whenever it is again available) to mark the bug as solved by
#11285 and then post this fact here.
Thanks! I do not have privileges to perform this action myself and there
is already enough gremlins... :-)
--
Xavier Perseguers
http://xavier.perseguers.ch/en
One contribution a day keeps the fork away
More information about the TYPO3-team-core
mailing list