我正在关注这篇文章 - https://blog.heroku.com/in_deep_with_django_channels_the_future_of_real_time_apps_in_django
是否与文章中建议的只有一名工作人员(免费等级)heroku ps:scale web=1:free worker=1:free
的事实有关?
所以现在又重新开始......我想它会再次下降......
CHANNEL_LAYERS = {
"default": {
"BACKEND": "asgi_redis.RedisChannelLayer",
"CONFIG": {
"hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')],
},
"ROUTING": "malang.routing.channel_routing",
},
}