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
- Remove "Configuration", "Running the server", "Dependencies" and "Deployment"
sections from the Action Cable README as they are already duplicated in the
Action Cable overview guide.
Copy file name to clipboardExpand all lines: actioncable/README.md
-161
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,6 @@ and scalable. It's a full-stack offering that provides both a client-side
7
7
JavaScript framework and a server-side Ruby framework. You have access to your full
8
8
domain model written with Active Record or your ORM of choice.
9
9
10
-
11
10
## Terminology
12
11
13
12
A single Action Cable server can handle multiple connection instances. It has one
@@ -300,166 +299,6 @@ The rebroadcast will be received by all connected clients, _including_ the clien
300
299
301
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.
302
301
303
-
304
-
## Configuration
305
-
306
-
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).
307
-
308
-
### Redis
309
-
310
-
By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/cable.yml')`.
311
-
This file must specify an adapter and a URL for each Rails environment. It may use the following format:
312
-
313
-
```yaml
314
-
production: &production
315
-
adapter: redis
316
-
url: redis://10.10.3.153:6381
317
-
development: &development
318
-
adapter: redis
319
-
url: redis://localhost:6379
320
-
test: *development
321
-
```
322
-
323
-
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.
355
-
This uses a URL or path typically set via `config.action_cable.url` in the environment configuration files, or defaults to "/cable".
356
-
357
-
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
358
-
for your Action Cable server, but development might remain http and use the ws scheme. You might use localhost in development and your
359
-
domain in production.
360
-
361
-
In any case, to vary the WebSocket URL between environments, add the following configuration to each environment:
362
-
363
-
```ruby
364
-
config.action_cable.url ="ws://example.com:28080"
365
-
```
366
-
367
-
Then add the following line to your layout before your JavaScript tag:
368
-
369
-
```erb
370
-
<%= action_cable_meta_tag %>
371
-
```
372
-
373
-
And finally, create your consumer like so:
374
-
375
-
```coffeescript
376
-
App.cable=ActionCable.createConsumer()
377
-
```
378
-
379
-
### Other Configurations
380
-
381
-
The other common option to configure is the log tags applied to the per-connection logger. Here's close to what we're using in Basecamp:
For a full list of all configuration options, see the `ActionCable::Server::Configuration` class.
392
-
393
-
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.
394
-
395
-
396
-
## Running the cable server
397
-
398
-
### Standalone
399
-
The cable server(s) is separated from your normal application server. It's still a Rack application, but it is its own Rack
400
-
application. The recommended basic setup is as follows:
Then you start the server using a binstub in bin/cable ala:
411
-
```sh
412
-
#!/bin/bash
413
-
bundle exec puma -p 28080 cable/config.ru
414
-
```
415
-
416
-
The above will start a cable server on port 28080.
417
-
418
-
### In app
419
-
420
-
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`:
421
-
422
-
```ruby
423
-
# config/application.rb
424
-
classApplication < Rails::Application
425
-
config.action_cable.mount_path ='/websocket'
426
-
end
427
-
```
428
-
429
-
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.
430
-
431
-
### Notes
432
-
433
-
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.
434
-
435
-
We'll get all this abstracted properly when the framework is integrated into Rails.
436
-
437
-
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).
438
-
439
-
## Dependencies
440
-
441
-
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.
442
-
443
-
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).
444
-
445
-
446
-
## Deployment
447
-
448
-
Action Cable is powered by a combination of WebSockets and threads. All of the
449
-
connection management is handled internally by utilizing Ruby’s native thread
450
-
support, which means you can use all your regular Rails models with no problems
451
-
as long as you haven’t committed any thread-safety sins.
452
-
453
-
The Action Cable server does _not_ need to be a multi-threaded application server.
454
-
This is because Action Cable uses the [Rack socket hijacking API](http://www.rubydoc.info/github/rack/rack/file/SPEC#Hijacking)
455
-
to take over control of connections from the application server. Action Cable
456
-
then manages connections internally, in a multithreaded manner, regardless of
457
-
whether the application server is multi-threaded or not. So Action Cable works
458
-
with all the popular application servers -- Unicorn, Puma and Passenger.
459
-
460
-
Action Cable does not work with WEBrick, because WEBrick does not support the
0 commit comments