Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added cache for story #150

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

- dip provision
- docker-compose up
- dip compose up
- open localhost:3000 in your browser

After setup you can
Expand Down
4 changes: 3 additions & 1 deletion app/views/stories/_main_stories_feed.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
Expand Down
20 changes: 20 additions & 0 deletions case-study.md
Original file line number Diff line number Diff line change
@@ -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` и сбрасываетс кэш.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

лайк за пояснение про сбрасывание кэша reactions и comments


### Результаты
Время загрузки главной страницы стало менее 0,5 секунд.
![alt text](newrelic_controller.png)
![alt text](newrelic_controller_partial.png)
2 changes: 1 addition & 1 deletion dip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ interaction:
provision:
- dip compose down --volumes
- dip compose up -d postgres redis
- dip bash -c bin/setup
- dip setup

Binary file added newrelic_controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added newrelic_controller_partial.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added newrelic_trace_details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.