aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-26 14:32:23 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-26 14:32:23 +0900
commit3b66804c81c0698e96ceebd7dd02fa0dc4c54e26 (patch)
tree849de1899db0462dc4e729eae94176dc773db36a /guides
parent802678d3dc27f1659c7bbdc5c0bbb86af2b25349 (diff)
downloadrails-3b66804c81c0698e96ceebd7dd02fa0dc4c54e26.tar.gz
rails-3b66804c81c0698e96ceebd7dd02fa0dc4c54e26.tar.bz2
rails-3b66804c81c0698e96ceebd7dd02fa0dc4c54e26.zip
Remove mention about Evented Redis [ci skip]
Evented Redis adapter was removed in 48766e32d31651606b9f68a16015ad05c3b0de2c.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_cable_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md
index 6ac6792e26..57403a4bf9 100644
--- a/guides/source/action_cable_overview.md
+++ b/guides/source/action_cable_overview.md
@@ -668,8 +668,8 @@ authentication. You can see one way of doing that with Devise in this [article](
## Dependencies
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
+pubsub internals. By default, asynchronous, inline, PostgreSQL, and Redis
+adapters are included. The default adapter
in new Rails applications is the asynchronous (`async`) adapter.
The Ruby side of things is built on top of [websocket-driver](https://github.com/faye/websocket-driver-ruby),