@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorGeneralCachePurger
4 extends PhabricatorCachePurger {
5
6 const PURGERKEY = 'general';
7
8 public function purgeCache() {
9 $table = new PhabricatorMarkupCache();
10 $conn = $table->establishConnection('w');
11
12 queryfx(
13 $conn,
14 'TRUNCATE TABLE %T',
15 'cache_general');
16 }
17
18}