Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Hyperstack.on_server? can do much better please

オープン
#345 コメント 1 件 リアクション 1 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
25/100
issue の種類
機能追加
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
rails, ruby
領域
backend

調査の方向性

まず Hyperstack.on_server? と issue に記載された initializer のオーバーライドを追跡し、次に言及されている simple_poller モードと Action Cable モードを比較します。完了条件は、サーバーの場所に関する前提を forward_messages_to_server? に置き換え、不要な転送を避けながら必要なブロードキャストを維持する設定または動作のチェックを追加することです。

索引モデルが issue の本文から書いたものです。

説明

enhancement needs doc

Currently Hyperstack.on_server? returns false if you not on the rails server (i.e. on the console or on in a sidekiq worker).

The system uses this to decide if it needs to forward any broadcasts to the server from, under the assumption that if you are not on the server you do not have access to the broadcast mechanism.

This assumption is pretty weak. The following are known cases where it doesn't matter:

you are using simple_poller (in this case you are going to shove the message into a queue, and wait for the next poll)

you are using action_cable NOT in async mode. (i.e. the connection data is stored in a database, not in the servers memory)

Not tested is pusher, and actually not tested (but I'm sure it would work is action_cable and redis)

Soooo...

This method should be called: forward_messages_to_server?
and should check to see if we have to forward it, by a combination of checking configuration and/or checking actual behavior.

Why should I care?

Because if you are using a lot of outside processes to do stuff, then you are adding unneeded overhead forwarding this stuff to the server.

The current work around is very simple: Just add this line to the hyperstack initializer

def Hyperstack.on_server?; true; end

主要言語
JavaScript
スター
538
フォーク
41
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

hyperstack-org/hyperstack のほかの issue

hyperstack-org/hyperstack の issue をすべて見る

似ている issue

JavaScript の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。