nishanthg92

nishanthg92

Push notifications using Elixir Channels?

Can i use elixir channels to push notification to android or IOS device like how google firebase do??

Most Liked

idi527

idi527

You would have to write a transport [0] (or something like that) for push notifications, probably (which are usually http/2 now) since they are different from websockets and long poll with which channels work right now.

It would be easier to just use one of the libraries made exactly for push notifications [1][2][3] and call their functions from within your channels.

You might also want to consider using something like a queue or a genstage [4].

[0] https://hexdocs.pm/phoenix/Phoenix.Socket.Transport.html
[1] https://github.com/inaka/apns4erl – ios only (supports http/2)
[2] https://github.com/codedge-llc/pigeon – ios and andriod (supports http/2)
[3] https://github.com/chvanikoff/apns4ex – ios only (http/1.1 only?)
[4] https://blog.discordapp.com/how-discord-handles-push-request-bursts-of-over-a-million-per-minute-with-elixirs-genstage-8f899f0221b4

greenz1

greenz1

I went through the Pigeon library’s docs. It uses HTTP2. FCM too relies on persistent HTTP connection. Below I have attached a comparison of HTTP and MQTT.

MQTT was designed for connecting devices, sensors, etc. over an unreliable network. It has a low network overhead. Thus, keeping persistent TCP connection is more battery efficient. Further MQTT was built for remote sensors which don’t have huge power backups available. Read the articles below as they have done a better job at explaining the why and how.


https://www.ibm.com/developerworks/community/blogs/sowhatfordevs/entry/using_mqtt_protocol_advantages_over_http_in_mobile_application_development5?lang=en

But there might be other reasons as to why you wouldn’t want MQTT. If you or your organization is reluctant to monitor security at ports other than 80 or you already have running infrastructure over HTTP2 or other preferences then you wouldn’t want to run MQTT.

And there is a good use case where a firm opted out of MQTT.

I for one feel there are too many benefits with MQTT along with customisability to overlook. MQTT gives necessary autonomy and fliexibility to build a highly customised mobile app, IoTproduct.

greenz1

greenz1

Check my answer on the same topic. Many answers here are not battery friendly.

idi527

idi527

How exactly is mqtt more battery friendly than something like apns? Both of these require a persistent tcp connection, do they not?

idi527

idi527

I do like mqtt as well, but the overhead from ws/mqtt/http2 is negligible in comparison with that of tcp, so I don’t think there is much difference in practice.

Where Next?

Popular in Questions Top

pgiesin
This should be a simple problem but I just can’t seem to figure it out. I have a standalone Elixir app that won’t find the database. Dep...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
myronmarston
The Elixir Typespec docs show the following syntax for keyword lists in typespecs: # ... | [key: type] # keyword lis...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
kostonstyle
Hi all I want to have a unix time, from the current time plus 1 hour. DateTime.now + 1 hour How to get it in elixir? Thanks
New
chewm
Hi guys, nice to meet you to the whole forum, I’m new here, I’m trying to configure visual studio code for elixir, right now the intellis...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New

Other popular topics Top

senggen
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] 15:22:35.803 [error] gen_event {lager_file_backend...
New
yawaramin
In the Dialyzer docs ( http://erlang.org/doc/man/dialyzer.html#requesting-or-suppressing-warnings-in-source-files ), there is a way to tu...
New
jerry
Good day to you all. I have been struggling to get a query involving like and ilike to work. Can anyone assist me on this, please? pro...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 45766 226
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New

We're in Beta

About us Mission Statement