Andpush is an HTTP client for FCM (Firebase Cloud Messaging). It implements the Firebase Cloud Messaging HTTP Protocol.
The andpush
gem performs about 3.7x faster than the fcm gem in a single-threaded environment. In a multi-threaded environment, it could perform 10x or even faster!
Add this line to your application's Gemfile:
gem 'andpush'
Or install it yourself as:
$ gem install andpush
You'll need your application's server key, whose value is available in the Cloud Messaging tab of the Firebase console Settings pane.
require 'andpush'
server_key = "..." # Your server key
device_token = "..." # The device token of the device you'd like to push a message to
client = Andpush.build(server_key)
payload = {
to: device_token,
notification: {
title: "Update",
body: "Your weekly summary is ready"
},
data: { extra: "data" }
}
response = client.push(payload)
headers = response.headers
headers['Retry-After'] # => returns 'Retry-After'
json = response.json
json[:canonical_ids] # => 0
json[:failure] # => 0
json[:multicast_id] # => 8478364278516813477
result = json[:results].first
result[:message_id] # => "0:1489498959348701%3b8aef473b8aef47"
result[:error] # => nil, "InvalidRegistration" or something else
result[:registration_id] # => nil
topic = "/topics/foo-bar"
payload = {
to: topic,
data: {
message: "This is a Firebase Cloud Messaging Topic Message!",
}
}
response = client.push(payload) # => sends a message to the topic
The andpush gem uses HTTP persistent connections to improve performance. This is done by the net-http-persistent gem. A simple benchmark shows that the andpush gem performs at least 3x faster than the fcm gem:
$ ruby bench.rb
Warming up --------------------------------------
andpush 2.000 i/100ms
fcm 1.000 i/100ms
Calculating -------------------------------------
andpush 28.009 (± 7.1%) i/s - 140.000 in 5.019399s
fcm 7.452 (±13.4%) i/s - 37.000 in 5.023139s
Comparison:
andpush: 28.0 i/s
fcm: 7.5 i/s - 3.76x slower
Bug reports and pull requests are welcome on GitHub at https://github.com/yuki24/andpush. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.