diff --git a/README.md b/README.md index 15d4611c67a2f07bd6335976e45a167e39b5afbd..d0acd832c964b054375121351f82930d9a4b27ae 100644 --- a/README.md +++ b/README.md @@ -270,6 +270,8 @@ bundle exec puma -p 28080 cable/config.ru That'll start a cable server on port 28080. Remember to point your client-side setup against that using something like: `App.cable.createConsumer('ws://basecamp.dev:28080')`. +Beware that currently the cable server will _not_ auto-reload any changes in the framework. As we've discussed, long-running cable connections mean long-running objects. We don't yet have a way of reloading the classes of those objects in a safe manner. So when you change your channels, or the model your channels use, you must restart the cable server. + Note: We'll get all this abstracted properly when the framework is integrated into Rails.