@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 PhabricatorChangesetCachePurger
4 extends PhabricatorCachePurger {
5
6 const PURGERKEY = 'changeset';
7
8 public function purgeCache() {
9 $table = new DifferentialChangeset();
10 $conn = $table->establishConnection('w');
11
12 queryfx(
13 $conn,
14 'TRUNCATE TABLE %T',
15 DifferentialChangeset::TABLE_CACHE);
16 }
17
18}