Action Cable is an open source technology shipped to us with Ruby On Rails 5. It uses websockets instead of traditional HTTP protocol and allows 2-way asynchronious data transfer.
Having server issues with an app in Rails 5.0.0.beta2 trying to use ActionCable. Using localhost:3000 works fine, as that is …
ruby-on-rails ruby-on-rails-5 actioncableActionCable doesn't work in production. Works well in development, but not in production. Running Nginx with Puma on Ubuntu 14.04. I …
ruby-on-rails ruby nginx ruby-on-rails-5 actioncableI know Rails 5 ships with Puma (which we're using) and will look for RAILS_MAX_THREADS as an environment variable …
multithreading heroku ruby-on-rails-5 puma actioncableI can use the following code in the controller but not in the console (both development environment). I'm using Rails 5.0.0.…
ruby-on-rails ruby-on-rails-5 actioncableI built a very simple app using Rails 5 beta 1 and ActionCable to show when users come online and let them …
ruby-on-rails api ruby-on-rails-5 actioncablemodule ApplicationCable class Connection < ActionCable::Connection::Base identified_by :current_user def connect #puts params[:auth_token] self.current_…
ruby-on-rails-5 actioncableI have seen ActionCable.server.open_connections_statistics, ActionCable.server.connections.length, ActionCable.server.connections.map(&:statistics), ActionCable.server.…
ruby publish-subscribe subscriptions ruby-on-rails-5 actioncableI created the following using ActionCable but not able to receive any data that is being broadcasted. Comments Channel: class …
ruby-on-rails actioncableI'm trying to build a messaging app with Rails 5 ActionCable, but I'm getting the above error in the JS console. …
ruby-on-rails nginx websocket ruby-on-rails-5 actioncableWhy am I not able to retrieve current_user inside my channel or how should I retrieve current_user? What …
ruby-on-rails authentication actioncable