R
ragtek
Guest
I've created a article system with own content types (including search,like,moderation handler)
My problem is, that the moderation queue updates not immediately, it took 1h, to change the number from 0 to 2.

If i go direct to the mod queue page, i can see the articles, but the mod bar shows the false number

The handler refreshes the cache, right?
So AFAIK i don't need to do anything, just to add it into the handler, right?
My problem is, that the moderation queue updates not immediately, it took 1h, to change the number from 0 to 2.

If i go direct to the mod queue page, i can see the articles, but the mod bar shows the false number


The handler refreshes the cache, right?
PHP:
public function insertIntoModerationQueue($contentType, $contentId, $contentDate){..
$this->rebuildModerationQueueCountCache();
}