Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

From one and a half minutes to one hour to send

Open
#408 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
28/100
Issue type
Bug
Clarity
Needs clarification
Activity status
Stale
Tech stack
php
Domain
backend

Research direction

Start with the reported sending loop and the queueNotification() and flush() calls, reproducing the timing difference between web-push-php versions 6 and 8 with 44,000 endpoints. Compare batch behavior and request timing around each flush, then confirm that the sending duration is reduced without changing the notification payload or endpoint handling.

Written by the indexing model from the issue text.

Description

Setup

  • Operating System: Linux
  • PHP Version: 8.1
  • web-push-php Version: 8.0

PHP extensions :

  • curl
  • gmp
  • mbstring
  • openssl

browsers:

  • Chrome
  • Firefox
  • Firefox for Mobile
  • Opera for Android
  • Samsung Internet Browser
  • Other

I was using version 6, and 44,000 endpoints were being sent in 1m 40s. After updating to version 8, the time has increased to almost 1 hour, and I don’t know what could be the reason.

This is the portion of sending code

$defaultOptions = [
    'TTL' => 300, // defaults (300) to 4 weeks
    'urgency' => 'normal', // protocol defaults to "normal"
    'topic' => 'new_event', // not defined by default,
    'batchSize' => 1000, // defaults to 1000
    'verify' => false,
    'timeout' => 6, // defaults to 20 
    '\GuzzleHttp\RequestOptions::ALLOW_REDIRECTS' => false
];

$webPush = new WebPush([], $defaultOptions);
$webPush->setAutomaticPadding(true);
$auth = array(
        'VAPID' => array(
            'subject' => 'https://www.mydomain.com',
            'publicKey' => file_get_contents(__DIR__ . '/../../../../keys/public_key.txt'),
            'privateKey' => file_get_contents(__DIR__ . '/../../../../keys/private_key.txt'),
        ),
    );
$webPush = new WebPush($auth);
$i = 0;
$notifications = [];
while ($row_subscription = $result -> fetch_assoc()){
    $i ++;
	$subscription_id = $row_subscription['subscription_id'];
        $payload = [
            "title" => $row_notificacion['title'],
            "body" => $row_notificacion['body'],
            "badge" => $row_notificacion['badge'],
            "icon" => $row_notificacion['icon'],
            "image" => $row_notificacion['image'],
            "url" => $row_notificacion['url'],
            "id" => $notification_id,
            "sid" => $subscription_id,
            "requireInteraction" => true,
            "vibrate" => "[300, 100, 400]"
        ];
    $data = json_encode($row_subscription);
    $subscription = Subscription::create(json_decode($data, true));
    $notifications[] = [
        'subscription' => $subscription,
        'payload' => json_encode($payload),
    ];
    if ($i % 1000 == 0 || $result->num_rows == $i) {
        foreach ($notifications as $notification) {
            $webPush->queueNotification($notification['subscription'], $notification['payload']);
        }

        foreach ($webPush->flush() as $report) {
            handleReport();
        }
        $notifications = [];
        
    }
}

Thank you

Dominant language
PHP
Stars
1.9k
Forks
312
Avg merge
1d 15h
Merged PRs (30d)
1

Getting set up

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from web-push-libs/web-push-php

All issues in web-push-libs/web-push-php

Similar issues

More PHP issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.