LiveView LongPoll Compression

Is compression possible with longpoll?

This does not work for longpoll.

  socket "/live", Phoenix.LiveView.Socket,
    longpoll: [connect_info: [session: @session_options], compress: true],
    websocket: [connect_info: [session: @session_options], compress: true]

That’s expected as the :compress configuration is only for :websocket as outlined in the Phoenix.Endpoint.socket/3 docs here.