並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 17 件 / 17件

新着順 人気順

WebSocketsの検索結果1 - 17 件 / 17件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

WebSocketsに関するエントリは17件あります。 serverwebsocketnetwork などが関連タグです。 人気エントリには 『WebSockets vs Server-Sent-Events vs Long-Polling vs WebRTC vs WebTransport | RxDB - JavaScript Database』などがあります。
  • WebSockets vs Server-Sent-Events vs Long-Polling vs WebRTC vs WebTransport | RxDB - JavaScript Database

    For modern real-time web applications, the ability to send events from the server to the client is indispensable. This necessity has led to the development of several methods over the years, each with its own set of advantages and drawbacks. Initially, long-polling was the only option available. It was then succeeded by WebSockets, which offered a more robust solution for bidirectional communicati

      WebSockets vs Server-Sent-Events vs Long-Polling vs WebRTC vs WebTransport | RxDB - JavaScript Database
    • Server-Sent Events, WebSockets, and HTTP

      Hi, I’m Mark Nottingham. I usually write here about the Web, protocol design, HTTP, and Internet governance. Find out more. Comments? Let's talk on Mastodon. @mnot@techpolicy.social other HTTP posts Yet More New HTTP Specs Wednesday, 8 June 2022 A New Definition of HTTP Monday, 6 June 2022 How Multiplexing Changes Your HTTP APIs Sunday, 13 October 2019 Designing Headers for HTTP Compression Tuesda

        Server-Sent Events, WebSockets, and HTTP
      • Cloud Run gets WebSockets, HTTP-2 and gRPC bidirectional streams | Google Cloud Blog

        Introducing WebSockets, HTTP/2 and gRPC bidirectional streams for Cloud Run We are excited to announce a broad set of new traffic serving capabilities for Cloud Run: end-to-end HTTP/2 connections, WebSockets support, and gRPC bidirectional streaming, completing the types of RPCs that are offered by gRPC. With these capabilities, you can deploy new kinds of applications to Cloud Run that were not p

          Cloud Run gets WebSockets, HTTP-2 and gRPC bidirectional streams | Google Cloud Blog
        • The Future of Web Software Is HTML-over-WebSockets

          The future of web-based software architectures is already taking form, and this time it’s server-rendered (again). Papa’s got a brand new bag: HTML-over-WebSockets and broadcast everything all the time. The dual approach of marrying a Single Page App with an API service has left many dev teams mired in endless JSON wrangling and state discrepancy bugs across two layers. This costs dev time, slows

            The Future of Web Software Is HTML-over-WebSockets
          • GitHub - vi/websocat: Command-line client for WebSockets, like netcat (or curl) for ws:// with advanced socat-like functions

            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              GitHub - vi/websocat: Command-line client for WebSockets, like netcat (or curl) for ws:// with advanced socat-like functions
            • GitHub - soketi/soketi: Next-gen, Pusher-compatible, open-source WebSockets server. Simple, fast, and resilient. 📣

              Soketi is meant to be open source, forever and ever. It solves issues that many developers face - the one of wanting to be limitless while testing locally or performing benchmarks. More than that, itt is also suited for production usage, either it is public for your frontend applications or internal to your team. The frequency of releases and maintenance is based on the available time, which is ti

                GitHub - soketi/soketi: Next-gen, Pusher-compatible, open-source WebSockets server. Simple, fast, and resilient. 📣
              • GitHub - libsql/sqld: sqld is a server mode for libSQL. Access over HTTP and WebSockets from any Edge platform

                A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

                  GitHub - libsql/sqld: sqld is a server mode for libSQL. Access over HTTP and WebSockets from any Edge platform
                • Create real-time applications via serverless WebSockets with new AWS AppSync GraphQL subscriptions filtering capabilities | Amazon Web Services

                  Front-End Web & Mobile Create real-time applications via serverless WebSockets with new AWS AppSync GraphQL subscriptions filtering capabilities With AWS AppSync you can create serverless GraphQL APIs that simplify application development by providing a single endpoint to securely query or update data from multiple data sources, and leverage GraphQL subscriptions to implement engaging real-time ap

                    Create real-time applications via serverless WebSockets with new AWS AppSync GraphQL subscriptions filtering capabilities | Amazon Web Services
                  • WebSockets vs. Server-Sent Events

                    Over the years, the HTTP request-response model has been used for client-server communications in web applications. However, with the popularity of real-time web applications, the need has emerged for servers to be able to push data to clients proactively without having clients requesting it first. As a result, push technology-based communication methods like WebSockets, and Server-Sent Events (SS

                      WebSockets vs. Server-Sent Events
                    • Migrating Millions of Concurrent Websockets to Envoy - Slack Engineering

                      Ariane van der Steldt Staff Software Engineer, Site Reliability Slack has a global customer base, with millions of simultaneously connected users at peak times. Most of the communication between users involves sending lots of tiny messages to each other. For much of Slack’s history, we’ve used HAProxy as a load balancer for all incoming traffic. Today, we’ll talk about problems we faced with HAPro

                        Migrating Millions of Concurrent Websockets to Envoy - Slack Engineering
                      • Building a chat - Browser Notifications with React, Websockets and Web-Push 🤯

                        Nevo David for novu Posted on Aug 22, 2022 • Updated on Sep 26, 2023 • Originally published at novu.co Building a chat - Browser Notifications with React, Websockets and Web-Push 🤯 Like this article? Follow me on X: https://x.com/nevodavid What is this article about? We have all encountered chat over the web, that can be Facebook, Instagram, Whatsapp and the list goes on. Just to give a bit of co

                          Building a chat - Browser Notifications with React, Websockets and Web-Push 🤯
                        • Server-Sent Events: the alternative to WebSockets you should be using

                          When developing real-time web applications, WebSockets might be the first thing that come to your mind. However, Server Sent Events (SSE) are a simpler alternative that is often superior. Contents Prologue WebSockets? What is wrong with WebSockets Compression Multiplexing Issues with proxies Cross-Site WebSocket Hijacking Server-Sent Events Let’s write some code The Reverse-Proxy The Frontend The

                            Server-Sent Events: the alternative to WebSockets you should be using
                          • webRTCとwebSocketsの違いは何でしょうか?

                            回答 (3件中の1件目) WebsocketはTCPを利用し、WebRTCはUDPを利用して機能します。 すなわち、信頼性はWebsocketが高く、パフォーマンスはWebRTCが高いです。 また、Websocketはサーバーとクライアントの全二重通信を、WebRTCはピア・ツー・ピアの全二重通信を簡単に実現します。 両者のいいとこ取りをした技術がWebTransportであり、QUICというプロトコルを用いますが、本題から外れますので、回答はここまでとさせていただきます。

                              webRTCとwebSocketsの違いは何でしょうか?
                            • How to implement instant messaging with WebSockets in Go

                              Custom software development Tailored software solutions and software augmentation services to meet unique business needs, drive operational efficiency, and stimulate business expansion Read more Development teams Dedicated development teams and professionals that work exclusively on your project and ensure top-notch tailored solutions Read more IT consulting Expert guidance on leveraging advanced

                                How to implement instant messaging with WebSockets in Go
                              • draft-momoka-httpbis-settings-enable-websockets を提出したのでIETF116のhttpbisで発表します。 - momokaのブログ

                                draft-momoka-httpbis-settings-enable-websockets IETFのhttpbis-wgに提出したあとにメーリスで議論したことのめも。 こちらのブログの続きです。 momoka0122y.hatenablog.com まず前回のブログの時点では大枠を書いただけでinternet-draftとして提出していなかったので提出しました。やり方は internet draft の書き方。テンプレートを使ってマークダウンで で書いた通り。 datatracker.ietf.org そしてIETF http-wgに提出してhttp-wg にメールを送った。(このときメールを送るのに承認が必要とのことで少し待った。少し待った後承認メールが送られると思ったが来なかったので10日後ぐらいに再度メールを送ったらメーリスに無事送れていた) lists.w3.org Hell

                                  draft-momoka-httpbis-settings-enable-websockets を提出したのでIETF116のhttpbisで発表します。 - momokaのブログ
                                • Real-time stress: AnyCable, k6, WebSockets, and Yabeda—Martian Chronicles, Evil Martians’ team blog

                                  So everything is set. Our new and shiny chat feature is up and running. There are unit and integration tests, maybe even 100% coverage. Everything seems working fine. At least for now. On this machine. Under these very stars. But what if one day you hit the orange website and suddenly find yourself handling 10-100x more users? Read on to learn how to reliably test real-time web scenarios with mode

                                    Real-time stress: AnyCable, k6, WebSockets, and Yabeda—Martian Chronicles, Evil Martians’ team blog
                                  • Using WebSockets and Load Balancers Part two | Amazon Web Services

                                    AWS Compute Blog Using WebSockets and Load Balancers Part two This post was written by Robert Zhu, Principal Developer Advocate at AWS. This article continues a blog I posted earlier about using Load Balancers on Amazon Lightsail. In this article, I demonstrate a few common challenges and solutions when combining stateful applications with load balancers. I start with a simple WebSocket applicatio

                                      Using WebSockets and Load Balancers Part two | Amazon Web Services
                                    1

                                    新着記事