https://whimsical.co/SJK9Qzo733f6jkw1Tfk4dT
- サーバーインスタンス(dyno)、ワーカーインスタンス(dyno)はそれぞれ1つずつ
- Sidekiqジョブは毎回DB接続を要求する
https://whimsical.co/SJK9Qzo733f6jkw1Tfk4dT
| # request API | |
| id: 797d05ac-6e72-434f-9819-c0742541f945 (ただのuuid) | |
| cookie: unique-id=99295a9ec2bf1f236380d34cb760968b3d7cd59f59; entryunique-id=9934aacdbc27369b9837993a6f296030633506d603; required=1; secured=1; _ga=GA1.4.238537.1513353296; mute_setting=0; volume_setting=0.5; clid=ba6f54324ed9425befe43121769e49dc7cf27e00; _ga=GA1.2.175174540.1514433383; survey=0; QuantumMetricUserID=b7ddc68143acb71cff7a251a924db5b7; videoid=vqsfpdfnro5invssvhvnsbtvc6; secure=8ed2bda3a8c433dd5a52b79b8e839990562a73ff; PC030011_window_width=1440; _gid=GA1.4.1826462311.1515847463; cto_lwid=1e520bcd-f6a5-42aa-b2f9-d11cfce3aff0; x-environment=production-pc; x-disable-type=0%2C0%2C0%2C0%2C0; x-unique-id=99295a9ec2bf1f236380d34cb760968b3d7cd59f59; PC030011_window_height=877; zappingPageProceedingCount=289; _gat_UA-21554603-10=1; _gat_UA-21554603-18=1; _gat_UA-55283043-3=1s | |
| # コンテンツリスト | |
| POST /request method=pcSearchResultList |
| // _z-index.scss | |
| $zIndexList: ( | |
| Background: -50100, | |
| ContentFront: 50100, | |
| UI: 50200, | |
| UIPopup: 50300, | |
| Modal: 50400, | |
| ); |
| module A | |
| def hoge | |
| puts 'hoge' | |
| end | |
| end | |
| A.hoge # a.rb:7:in `<main>': undefined method `hoge' for A:Module (NoMethodError) |
| module A | |
| include B | |
| def f() | |
| utility() | |
| g() | |
| end | |
| private |
| import { g } from './B'; | |
| export function f() { | |
| utility(); | |
| g(); | |
| } | |
| function utility() { | |
| // ... | |
| } |