From 8bf2aaf0e9e8290bcbc979471638d2e69b2d73b5 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Fri, 28 Aug 2020 09:55:14 -0500 Subject: [Performance] Cache results of formatting --- app/lib/formatter.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'app/lib/formatter.rb') diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 6673f4b4b..5b8098ceb 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -32,6 +32,12 @@ class Formatter include ActionView::Helpers::TextHelper def format(status, **options) + Rails.cache.fetch(formatter_cache_key(status, options), expires_in: 1.hour) do + uncached_format(status, options) + end + end + + def uncached_format(status, options) summary = nil raw_content = status.proper.text summary_mode = false @@ -436,5 +442,17 @@ class Formatter def mention_html(account) "@#{encode(account.username)}" end + + def formatter_cache_key(status, options) + [ + 'format', + status.id.to_s, + options[:article_content] ? '1' : '0', + options[:inline_poll_options] ? '1' : '0', + options[:plaintext] ? '1' : '0', + options[:autoplay] ? '1' : '0', + options[:custom_emojify] ? '1' : '0', + ].join(':') + end end # rubocop:enable Metrics/ClassLength -- cgit