You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: actioncable/README.md
+143-2
Original file line number
Diff line number
Diff line change
@@ -299,9 +299,150 @@ The rebroadcast will be received by all connected clients, _including_ the clien
299
299
300
300
See the [rails/actioncable-examples](https://github.com/rails/actioncable-examples) repository for a full example of how to setup Action Cable in a Rails app, and how to add channels.
301
301
302
-
## Download and installation
302
+
## Configuration
303
303
304
-
The latest version of Action Cable can be installed with RubyGems:
304
+
Action Cable has three required configurations: a subscription adapter, allowed request origins, and the cable server URL (which can optionally be set on the client side).
305
+
306
+
### Redis
307
+
308
+
By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/cable.yml')`.
309
+
This file must specify an adapter and a URL for each Rails environment. It may use the following format:
310
+
311
+
```yaml
312
+
production: &production
313
+
adapter: redis
314
+
url: redis://10.10.3.153:6381
315
+
development: &development
316
+
adapter: redis
317
+
url: redis://localhost:6379
318
+
test: *development
319
+
```
320
+
321
+
You can also change the location of the Action Cable config file in a Rails initializer with something like:
Action Cable will only accept requests from specified origins, which are passed to the server config as an array. The origins can be instances of strings or regular expressions, against which a check for match will be performed.
The second option is to pass the server URL through the `action_cable_meta_tag` in your layout.
353
+
This uses a URL or path typically set via `config.action_cable.url` in the environment configuration files, or defaults to "/cable".
354
+
355
+
This method is especially useful if your WebSocket URL might change between environments. If you host your production server via https, you will need to use the wss scheme
356
+
for your Action Cable server, but development might remain http and use the ws scheme. You might use localhost in development and your
357
+
domain in production.
358
+
359
+
In any case, to vary the WebSocket URL between environments, add the following configuration to each environment:
360
+
361
+
```ruby
362
+
config.action_cable.url ="ws://example.com:28080"
363
+
```
364
+
365
+
Then add the following line to your layout before your JavaScript tag:
366
+
367
+
```erb
368
+
<%= action_cable_meta_tag %>
369
+
```
370
+
371
+
And finally, create your consumer like so:
372
+
373
+
```coffeescript
374
+
App.cable=ActionCable.createConsumer()
375
+
```
376
+
377
+
### Other Configurations
378
+
379
+
The other common option to configure is the log tags applied to the per-connection logger. Here's an example that uses the user account id if available, else "no-account" while tagging:
For a full list of all configuration options, see the `ActionCable::Server::Configuration` class.
390
+
391
+
Also note that your server must provide at least the same number of database connections as you have workers. The default worker pool is set to 4, so that means you have to make at least that available. You can change that in `config/database.yml` through the `pool` attribute.
392
+
393
+
394
+
## Running the cable server
395
+
396
+
### Standalone
397
+
The cable server(s) is separated from your normal application server. It's still a Rack application, but it is its own Rack
398
+
application. The recommended basic setup is as follows:
Then you start the server using a binstub in bin/cable ala:
409
+
```sh
410
+
#!/bin/bash
411
+
bundle exec puma -p 28080 cable/config.ru
412
+
```
413
+
414
+
The above will start a cable server on port 28080.
415
+
416
+
### In app
417
+
418
+
If you are using a server that supports the [Rack socket hijacking API](http://www.rubydoc.info/github/rack/rack/file/SPEC#Hijacking), Action Cable can run alongside your Rails application. For example, to listen for WebSocket requests on `/websocket`, specify that path to `config.action_cable.mount_path`:
419
+
420
+
```ruby
421
+
# config/application.rb
422
+
classApplication < Rails::Application
423
+
config.action_cable.mount_path ='/websocket'
424
+
end
425
+
```
426
+
427
+
For every instance of your server you create and for every worker your server spawns, you will also have a new instance of Action Cable, but the use of Redis keeps messages synced across connections.
428
+
429
+
### Notes
430
+
431
+
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.
432
+
433
+
We'll get all this abstracted properly when the framework is integrated into Rails.
434
+
435
+
The WebSocket server doesn't have access to the session, but it has access to the cookies. This can be used when you need to handle authentication. You can see one way of doing that with Devise in this [article](http://www.rubytutorial.io/actioncable-devise-authentication).
436
+
437
+
## Dependencies
438
+
439
+
Action Cable provides a subscription adapter interface to process its pubsub internals. By default, asynchronous, inline, PostgreSQL, evented Redis, and non-evented Redis adapters are included. The default adapter in new Rails applications is the asynchronous (`async`) adapter. To create your own adapter, you can look at `ActionCable::SubscriptionAdapter::Base` for all methods that must be implemented, and any of the adapters included within Action Cable as example implementations.
440
+
441
+
The Ruby side of things is built on top of [websocket-driver](https://github.com/faye/websocket-driver-ruby), [nio4r](https://github.com/celluloid/nio4r), and [concurrent-ruby](https://github.com/ruby-concurrency/concurrent-ruby).
Copy file name to clipboardExpand all lines: guides/source/active_support_core_extensions.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -954,7 +954,8 @@ class A
954
954
class_attribute :x, instance_reader:false
955
955
end
956
956
957
-
A.new.x =1# NoMethodError
957
+
A.new.x =1
958
+
A.new.x # NoMethodError
958
959
```
959
960
960
961
For convenience `class_attribute` also defines an instance predicate which is the double negation of what the instance reader returns. In the examples above it would be called `x?`.
0 commit comments