Asynchronous ruby framework for websockets, eventsource and streaming
1–10 of 15 posts
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#2Re: Asynchronous ruby framework for websockets, eventsource and streaming
#3Re: Asynchronous ruby framework for websockets, eventsource and streaming
#4Re: Asynchronous ruby framework for websockets, eventsource and streaming
#5HN meta point here. This link was posted 18 days ago too, but with a forward slash at the end: http://news.ycombinator.com/item?id=2874982 (nonetheless it gets an upvote again for being cool). Potential fix/update for news.arc on this issue or just a useful trick to let slide? :-)
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#6I would really love to see some perf comparisons vs C# or Java.
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#7HN meta point here. This link was posted 18 days ago too, but with a forward slash at the end: http://news.ycombinator.com/item?id=2874982 (nonetheless it gets an upvote again for being cool). Potential fix/update for news.arc on this issue or just a useful trick to let slide? :-)
Ha! I didn't realize about '/'. I asked in #startups about giving my old thread a bump but no one responded. So I tried making a new post and it worked!
I didn't know about the / approach but have used the "?" suffix "trick" a couple of times over the years when submitting things that other people put boring/inappropriate titles on that didn't catch on. I believe # will also work since AJAXified URLs need to be supported.
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#8Cramp is a fully asynchronous web framework that's very good at dealing with thousands of open connections. It supports WebSockets (latest protocol) and Server-sent Events out of the box. Optionally, supports using Ruby 1.9 fibers to prevent spaghetti evented code - which means seamless Active Record integration.
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#9Cramp is a fully asynchronous web framework that's very good at dealing with thousands of open connections. It supports WebSockets (latest protocol) and Server-sent Events out of the box. Optionally, supports using Ruby 1.9 fibers to prevent spaghetti evented code - which means seamless Active Record integration.
How does it compare to node.js? When is cramp a good fit compared to node.js and vice versa?
All said, it all boils down to your personal choice of languages.
Re: Asynchronous ruby framework for websockets, eventsource and streaming
#102. Generally, the "Hello World" for a real-time framework is a simple chat application.