David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said almost 9 years ago on Faye WebSockets - Part 1 :

I hope to get it recorded this weekend.


David Kimura PRO said almost 9 years ago on Refile Uploads with Progress Bar :

FYI, if anyone is having issues with the Progress Bar showing the status, you will need to change the detail to below in the progress section.


$(document).on "upload:progress", "form", (e) ->
detail= e.originalEvent.detail.progress

David Kimura PRO said almost 9 years ago on Not RJS and Turbolinks :

Really cool about

dom_id

I wasn't aware of it!

I do plan on doing an episode on client side validations so the forms can be checked prior to submitting. Ideally, something that would look at the model's validations and generate the necessary javascript.


David Kimura PRO said over 8 years ago on ActionCable on Production :

No, `max_conns` is the maximum number of file descriptors that can be open where as `max-persistent-conns` is the maximum number of persistent connections you're referring to. Depending on your configuration, you could have a dedicated web socket server balanced by an HAPROXY server. This would allow for much greater number of connections while all serving at the same endpoint.


David Kimura PRO said over 8 years ago on ActionCable on Production :

With concurrency in mind, `max_conn` could probably be left at the default of 1024. However, the default for `max_persistent_conns` is 100.