Tagged Questions
3
votes
1answer
78 views
How to decode a cookie from the header of a websocket connection handshake? (Ruby)
I am running a Sinatra app within an EventMachine.run loop and in my ws.onopen method I wish to check the handshake header's cookie to ensure that the incoming request is coming from a registered user ...
1
vote
1answer
103 views
how to test sinatra app wrapped inside eventmachine?
I have this app:
require 'sinatra/base'
require 'thin'
class WebService < Sinatra::Base
get '/' do
'hello'
end
end
EM.run do
EventMachine.add_periodic_timer(1) do
puts 'hello'
...
1
vote
0answers
60 views
There is no log when using Rack::FiberPool in Rails
I'm using Rack FiberPool with Rails. When I run in development mode there is no log show on the console (neither static assets nor active record log).
The log contains useful information for ...
0
votes
0answers
210 views
Streaming on Ruby Thin server
I tried the following ruby code...
self.response.headers["Cache-Control"] ||= "no-cache"
self.response.headers["Transfer-Encoding"] = "chunked"
self.response.headers['Last-Modified'] = ...
1
vote
1answer
264 views
How does thin asynch app example buffer response to the body?
Hi I have been going through the documentation on Thin and I am reasonably new to eventmachine but I am aware of how Deferrables work. My goal is to understand how Thin works when the body is deferred ...
1
vote
0answers
567 views
Using rack middleware in a class based sinatra application with async request
I'm trying to log async requests to my sinatra app. I'm using sinatra synchrony which is working great, but I don't see any of my request info. This post shows a solution to this but my sorry newb ...
0
votes
1answer
102 views
Is it ok to have a `SendEmail` rack middleware or other such background job middlewares?
I read rack middleware is for modifying the current request/response, but what about having a SendEmail middlewares which would look at env['user_id'] to send emails.
Let's assume the entire process ...
2
votes
3answers
767 views
What are some good ways to make an async web app on ruby these days?
I'm looking to build a webapp with a WebSocket component, and a run of the mill rack based frontend. My initial plan was to use Camping for the frontend, running the server on thin, with a rack ...
2
votes
2answers
1k views
Is it possible to access Ruby EventMachine Channels from Thin/Rack/Sinatra?
I'm looking to build a simple, RESTful notification system for an internal project leveraging Sinatra. I've used EventMachine channels in the past to subscribe/publish to events, but in all my ...
6
votes
3answers
5k views
Integrating WebSockets with Rails using Rack and Event Machine
I have created an Asynchronous version of Rails 3 that I would like to integrate with a WebSocket implementation.
I am using EventMachine, Ruby 1.9, Fibers and various em-flavoured libraries as ...
29
votes
5answers
10k views
Any success with Sinatra working together with EventMachine WebSockets?
I have been using Sinatra for sometime now and I would like to add some realtime features to my web-app by pushing the data via websockets.
I have successfully used the gem 'em-websocket' on its own, ...
