Open denga opened 4 years ago
I create a new laravel project and add a command that listens to presence updates.
"databaseConfig": { "redis": { "keyPrefix": "laravel_chat_database_" }, "publishPresence": true }
2. Create a command with
Redis::subscribe(['PresenceChannelUpdated'], function ($message) { dump($message); });
4. No messages appear 5. When I remove the prefix everything works **Publishing of update events should also use the keyPrefix.**
same problem. @tlaverdure can you fix it?
I create a new laravel project and add a command that listens to presence updates.
Redis::subscribe(['PresenceChannelUpdated'], function ($message) { dump($message); });