Cable Versions Save

It's like ActionCable (100% compatible with JS Client), but you know, for Crystal

v0.3.1

7 months ago

This release contains fixes for a memory leak, and IO::Errors when trying to send messages to closed sockets

v0.3.0

8 months ago
  • Backend abstraction to work with different backends.
  • Exception block handler using settings.on_error
  • Performance improvements
  • Better handling of malformed payloads
  • Remote disconnections

v0.2.2

1 year ago

This release fixes a major memory leak thanks to @jgaskins

v0.2.1

2 years ago

This release adds in a pooled client for publish. Enable this setting by updating your Cable config.

Cable.configure do |settings|
  settings.route = "/cable"
  settings.token = "token"
  # Add this line.
  settings.pool_redis_publish = true
end

v0.2.0

2 years ago

v0.1.0

2 years ago

This is the initial release. Fully functional and compatible with Rails ActionCable