0
Redisでパフォーマンス測定値がある場合、処理できる同時加入数/チャネル数は となりますか?接続の「N」を扱う際の赤字機能はありますか?
Redisでパフォーマンス測定値がある場合、処理できる同時加入数/チャネル数は となりますか?接続の「N」を扱う際の赤字機能はありますか?
私はこれのベンチマークを見たことはありませんが、購読されたチャンネルにプッシュする複雑さはO(N)ファミリーにあります。ドキュメントから :
はPUBLISH:
O(N+M) where N is the number of clients subscribed to the
receiving channel and M is the total number of subscribed
patterns (by any client).
PSUBSCRIBE(パターンにサブスクライブ):
O(N) where N is the number of patterns the client is already subscribed to.
をSUBSCRIBE:
O(N) where N is the number of channels to subscribe to.
を