1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00
appwrite/app/realtime.php

14 lines
273 B
PHP
Raw Normal View History

2020-10-16 20:31:09 +13:00
<?php
use Appwrite\Realtime\Server;
2021-02-25 06:12:38 +13:00
require_once __DIR__ . '/init.php';
2020-10-16 20:31:09 +13:00
2020-10-20 04:09:53 +13:00
Swoole\Runtime::enableCoroutine(SWOOLE_HOOK_ALL);
2020-10-19 00:51:16 +13:00
$config = [
2021-03-02 04:13:10 +13:00
'package_max_length' => 64000 // Default maximum Package Size (64kb)
];
2020-10-16 20:31:09 +13:00
$realtimeServer = new Server($register, config: $config);