How will the configuration file, config/cable.yml
look like for a postgreSQL adapter?
Configuration for action cable for postgreSQL?
Asked Answered
This is working for me:
# config/cable.yml
production:
adapter: postgresql
development:
adapter: postgresql
test:
adapter: postgresql
The postgresql adapter uses the pg notify command. Keep in mind that the message body must be smaller than 8000 bytes.
This is because of: edgeguides.rubyonrails.org/… –
Boddie
© 2022 - 2024 — McMap. All rights reserved.