diff --git a/src/applications/cache/storage/PhabricatorMarkupCache.php b/src/applications/cache/storage/PhabricatorMarkupCache.php index ba0b42ca8b..6ce0593bb2 100644 --- a/src/applications/cache/storage/PhabricatorMarkupCache.php +++ b/src/applications/cache/storage/PhabricatorMarkupCache.php @@ -12,6 +12,9 @@ final class PhabricatorMarkupCache extends PhabricatorCacheDAO { 'cacheData' => self::SERIALIZATION_PHP, 'metadata' => self::SERIALIZATION_JSON, ), + self::CONFIG_BINARY => array( + 'cacheData' => true, + ), ) + parent::getConfiguration(); } diff --git a/src/applications/herald/storage/transcript/HeraldTranscript.php b/src/applications/herald/storage/transcript/HeraldTranscript.php index be35b9ee02..2e2d4858ec 100644 --- a/src/applications/herald/storage/transcript/HeraldTranscript.php +++ b/src/applications/herald/storage/transcript/HeraldTranscript.php @@ -92,6 +92,12 @@ final class HeraldTranscript extends HeraldDAO 'conditionTranscripts' => self::SERIALIZATION_PHP, 'applyTranscripts' => self::SERIALIZATION_PHP, ), + self::CONFIG_BINARY => array( + 'objectTranscript' => true, + 'ruleTranscripts' => true, + 'conditionTranscripts' => true, + 'applyTranscripts' => true, + ), ) + parent::getConfiguration(); }