diff --git a/README.md b/README.md index 2ce9ea57..334c4cd8 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ - в .env вставить свои ключи от Algolia - gem install dip (maybe change .ruby-version file with your ruby ver) - cd .dev_to -- docker-compose build +- dip compose build - dip provision -- docker-compose up +- dip compose up - open localhost:3000 in your browser After setup you can diff --git a/app/views/stories/_main_stories_feed.html.erb b/app/views/stories/_main_stories_feed.html.erb index b6cd0a65..3e175010 100644 --- a/app/views/stories/_main_stories_feed.html.erb +++ b/app/views/stories/_main_stories_feed.html.erb @@ -55,7 +55,9 @@ <% if !user_signed_in? && i == 4 %> <%= render "stories/sign_in_invitation" %> <% end %> - <%= render "articles/single_story", story: story %> + <% cache story do %> + <%= render "articles/single_story", story: story %> + <% end %> <% end %> <% end %> <% if @stories.size > 1 %> diff --git a/case-study.md b/case-study.md new file mode 100644 index 00000000..956e9422 --- /dev/null +++ b/case-study.md @@ -0,0 +1,20 @@ +## Case-study оптимизации + +### Подготовка +Чтобы выявить возможные проблемы в dev.to, развернул его локально, установил `newrelic_rpm` и подал на него небольшую нагрузку при помощи утилиты `ab`. Дополнительно настроил `rack-mini-profiler`. + +### Актуальная проблема +`rack-mini-profiler` показывает время загрузки главной страницы примерно 2-3 секунды. + +### Поиск проблемы +NewRelic показал проблему на главной странице +![alt text](newrelic_trace_details.png) +Очень много времени загружаются шаблоны `_single_story.html.erb` + +### Решение +Данные шаблоны содержат минимальную информацию, которая редко меняется, за исключением количества лайков и комментариев. Было решено закэшировать каждый шаблон по отдельности, чтобы при обновлении story сбрасывался кэш для соответствующего шаблона. Внутри шаблона `positive_reactions_count` и `comments_count` это поля статьи, при обновлении меняется `updated_at` и сбрасываетс кэш. + +### Результаты +Время загрузки главной страницы стало менее 0,5 секунд. +![alt text](newrelic_controller.png) +![alt text](newrelic_controller_partial.png) \ No newline at end of file diff --git a/dip.yml b/dip.yml index 05d96de5..9a56d397 100644 --- a/dip.yml +++ b/dip.yml @@ -77,5 +77,5 @@ interaction: provision: - dip compose down --volumes - dip compose up -d postgres redis - - dip bash -c bin/setup + - dip setup diff --git a/newrelic_controller.png b/newrelic_controller.png new file mode 100644 index 00000000..cd26e941 Binary files /dev/null and b/newrelic_controller.png differ diff --git a/newrelic_controller_partial.png b/newrelic_controller_partial.png new file mode 100644 index 00000000..75346346 Binary files /dev/null and b/newrelic_controller_partial.png differ diff --git a/newrelic_trace_details.png b/newrelic_trace_details.png new file mode 100644 index 00000000..fdf0705d Binary files /dev/null and b/newrelic_trace_details.png differ