Tagged Questions

EventMachine is a fast, reactor pattern library for Ruby programs. It provides non-blocking IO APIs with transparent internal buffers and standard reactor features (such as defer, next_tick and timers). (note to future editors: Eventmachine itself does not use Fibers, and the core does not use threads for any IO, timers or core infrastructure).

learn more… | top users | synonyms

14
votes
4answers
5k 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, ...
12
votes
3answers
2k views

What is the point/purpose of Ruby EventMachine, Python Twisted, or JavaScript Node.js?

I don't understand what problem these frameworks solve. Are they replacements for a HTTP server like Apache HTTPD, Tomcat, Mongrel, etc? Or are they more? Why might I use them... some real world ...
10
votes
5answers
3k views

EventMachine vs Node.js

I'm going to develop a collaborative site, and one of the features will be collaborative editing with realtime changes. i.e. when two or more users are editing the same doc, they can see each other ...
8
votes
5answers
927 views

How do you spawn an EventMachine “inside” a Rails app?

I've got a Rails application, and am looking to add some sort of WebSocket support to it. From various googling, it appears that the best Ruby based WebSocket solution is em-websocket running on ...
7
votes
1answer
602 views

Why is EventMachine so much slower than Node?

In my specific case, at least. Not trying to make general statements here. I've got this web crawler that I wrote in Node.js. I'd love to use Ruby instead, so I re-wrote it in EventMachine. Since the ...
7
votes
1answer
2k views

Thin EventMachine Sinatra vs. Rails

I have been looking into the possibility of backgrounding some jobs with EventMachine. In Sinatra this appears to work great but Rails 3 appears to execute all ticks before rendering a view. When I ...
5
votes
5answers
250 views

Mutex sleep is taking a lot of CPU

I profiled my event-machine based application with ruby-prof and found the following interesting: 5.28 0.00 5.28 0.00 4/4 Mutex#synchronize 90.72% 0.00% ...
5
votes
2answers
532 views

Ruby concurrency/asynchronous processing (with simple use case)

I was looking into ruby's parallel/asynchronous processing capabilities and read many articles and blog posts. I looked through EventMachine, Fibers, Revactor, Reia, etc, etc. Unfortunately, I wasn't ...
5
votes
2answers
1k views

How do EventMachine & Rails integrate?

I've found plenty of articles showing me what EventMachine is and how to set up endless "Hello World!" examples, but I'm still at a loss as to how this integrates with my Rails application. As a ...
5
votes
1answer
726 views

Working examples of EM::Iterator

Does anyone have any working examples of EM::Iterator? The only examples I can find seem to be copies of (or point back to): http://yardoc.org/docs/eventmachine-eventmachine/EventMachine/Iterator ...
4
votes
1answer
455 views

Multiple servers in a single EventMachine reactor

Is it possible to run multiple servers within a single event machine? What I mean is that multiple services can be used concurrently by a single client connection. For example, a login server ...
4
votes
2answers
552 views

mongoid and mongomapper with eventmachine

I'm very new to eventmachine and I haven't been able to find an answer to this question online. Right now I've been using em-mongo with eventmachine, and I've written essentially a poor man's mapper ...
4
votes
2answers
1k views

Rails - syncing - Faye, Juggernaut, Cool.io, plain old eventmachine

I have a need for syncing and have choice overload. It seems like the options available include: Faye, Juggernaut, Cool.io, plain old eventmachine Any suggestions? What are the most popular, ...
4
votes
1answer
2k views

socket.io and eventmachine in ruby

I am trying out a very basic server/client demo. I am using socket.io on the client(a user in a browser) and eventmachine Echo example for server. Ideally socket.io should send a request to server and ...
4
votes
1answer
955 views

async sinatra with thin and rainbows in eventmachine. Why thin is more faster?

I just launched async sinatra benchmark between thin and rainwbows with eventmachine. Someone can explain why Thin is faster than Rainbows with eventmachine and four work_processes? I also tried it ...
4
votes
2answers
3k 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 ...
4
votes
2answers
298 views

eventmachine and external scripts via backticks

I have a small HTTP server script I've written using eventmachine which needs to call external scripts/commands and does so via backticks (``). When serving up requests which don't run backticked ...
4
votes
3answers
3k views

EventMachine : How to build a chat system with Rails application

I am building a chat system using EventMachine and ruby on rails. It's for learning purpose. This is how client is connecting to server. c = TCPSocket.open(ip_address, port) data = {:user_id => ...
4
votes
2answers
973 views

What causes EventMachine::ConnectionNotBound?

I'm new to EventMachine, so I'm not sure what this means. I'm getting this exception: EventMachine::ConnectionNotBound recieved ConnectionUnbound for an unknown signature: ...
3
votes
1answer
153 views

EventMachine gem workaround causes missing dll file ruby error, Windows 7

Upon cloning my first Rails 3.1.1 app, my first bundle install choked on the eventmachine 0.12.10 gem. (I'm running Windows 7 32 bit) I'm also using gem 'thin' as well. I found this post that had ...
3
votes
1answer
838 views

Can't install eventmachine on mac osx snow leopard

I've searched for this issue and kept finding resources related to PC. Every time I try to install the eventmachine gem I get this error: Building native extensions. This could take a while... ...
3
votes
2answers
759 views

Am i using eventmachine in the right way?

I am using ruby-smpp and redis to achive a queue based background worker to send SMPP messages. And i am wondering if I am using eventmachine in the right way. It works but it doesnt feel right. ...
3
votes
1answer
440 views

how to solve 'connection is still waiting for a result' error with em_mysql2

I'm using activerecord with em_mysql2 under Goliath (eventmachine). The oddest thing is happening with my User model. When I do a POST to /users the first time, it all works just find as expected. ...
3
votes
2answers
198 views

EventMachine - how can you tell if you're falling behind?

I'm looking into using the EventMachine powered twitter-stream rubygem to track and capture tweets. I'm kind of new to the whole evented programming thing. How can I tell if whatever processing I'm ...
3
votes
1answer
445 views

Ruby EventMachine + AMQP: Ensuring specific async calls happen before raising exceptions

We're building an AMQP-backed messaging system in Ruby. We have a problem with error handling however. We maintain a whitelist of exceptions, which are safe, and the message in RabbitMQ can be left ...
3
votes
2answers
899 views

How to write (large) files with Ruby Eventmachine

I've spent several days now finding some non-echo-server examples for eventmachine, but there just don't seem to be any. Let's say i want to write a server that accepts a file and writes it to a ...
3
votes
2answers
598 views

How to log with Ruby and eventmachine?

I'm writing an application using Ruby and the Eventmachine library. I really like the idea of non blocking I/O and event driven systems, the problem I'm running into is logging. I'm using Ruby's ...
3
votes
2answers
650 views

Asynchronously iterating over the response of a request using Thin and Sinatra

If your response in Sinatra returns an 'eachable' object, Sinatra's event loop will 'each' your result and yield the results in a streaming fashion as the HTTP response. However, if there are ...
3
votes
3answers
1k views

Why Eventmachine Defer slower than Ruby Thread?

I have two scripts which using mechanize to fetch google index page. I assuming Eventmachine will faster than ruby thread, but not. Eventmachine code cost "0.24s user 0.08s system 2% cpu 12.682 ...
3
votes
2answers
561 views

SOAP calls using EventMachine

Is there any way to make non-blocking SOAP requests within EventMachine? I'm creating a ruby application which interacts with the google adwords api (which is SOAP based), using the adwords4r gem. ...
2
votes
1answer
47 views

EventMachine and Twitter streaming API

I am running an EventMachine process using the Twitter streaming API. I always have an issue if the content of the stream is not frequently. Here is the minimal version of the script: require ...
2
votes
1answer
50 views

EventMachine read and write files in chunks

I'm using EventMachine and EM-Synchrony in a REST API server. When a receive a POST request with a large binary file in body I receive it in chunks, writing that chunks to a Tempfile, not blocking the ...
2
votes
1answer
76 views

Sending messages with Eventmachine and EM-Redis in ruby-smpp

I have a trying to send SMS messages with ruby-smpp. Following the project examples and some research into em-redis and eventmachine, I have the following gateway.rb configuration: loop do ...
2
votes
2answers
51 views

How do I distinguish between Ctrl+C vs regular unbind using EventMachine?

Is there a good way to distinguish between when I do a Ctrl+C to manually close all connections, and when a client disconnects from my server? They both seem to call the unbind method. When I ...
2
votes
1answer
135 views

Is long polling possible with a Rails application using EventMachine?

I'm writing a simple chat room application in Rails 3.1 - for learning purposes. For starters I have all the needed models (messages, users, rooms, etc.) and things work great. The clients poll the ...
2
votes
2answers
126 views

How do I run Net::SSH and AMQP in the same EventMachine reactor?

Some background: Gerrit exposes an event stream through SSH, see here. It's a cute trick, but I need to convert those events into AMQP messages. I've tried to do this with ruby-amqp and Net::SSH but, ...
2
votes
3answers
227 views

Async Rails 3.1 problem with assets

I have a problem with assets on an asynchronous rails 3.1 application, I managed to build a minimal example showing my problem but it did not helped me much. The application is really simple, what I ...
2
votes
3answers
269 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
171 views

Eventmachine: Concurrency

I have a simple program which receives a connection, does some processing and sends a response back on a standard port. Since this is done synchronous, if one request takes too long, a concurrent ...
2
votes
4answers
1k views

Running an EventMachine Worker on Heroku + Sinatra + Twitter Streaming API?

I'm trying to get my head around the asynchronous pattern involved in running eventmachine on Heroku with Sinatra. In a nutshell, what I'm trying to achieve is this: using em-http create a http ...
2
votes
3answers
624 views

using the postgresql gem async

I'm using Goliath (which is powered by eventmachine) and the postgres gem pg, currently I'm using the pg gem in a blocking way: conn.exec('SELECT * FROM products') (for example) and I'm wondering ...
2
votes
0answers
298 views

em-mongo examples?

Looking to use em-mongo for a text analyzer script which loads text from db, analyzes it, flags keywords and updates the db. Would love to see some examples of em-mongo in action. Only one I could ...
2
votes
1answer
337 views

What's the best option for starting and stopping an eventmachine server from a Ruby on Rails application

CORRECTION: Specifically I'm looking to start and stop an EventMachine (EM) from a Ruby on Rails controller. (I've been told that 'Thin' would work well for this.) NOTE: This EM server is SEPARATE ...
2
votes
1answer
447 views

How IMAP idle works?

Can someone explain to me how IMAP IDLE works? Does it fork a new process for each connection that it opens? Can I somehow use eventmachine with it? I am trying to implement it in ruby on heroku ...
2
votes
2answers
473 views

Is it possible to initiate multiple parallel http requests using EventMachine with Ruby 1.8

em-synchrony.rb implements this feature with Fibers but I would go for a non-Fibre version with 1.8 MRI. EM.run do http = EM::Protocols::HttpClient2.connect("www.google.com", 80) request = ...
2
votes
1answer
801 views

How to get an HTTPS request with SSL client cert to work with Ruby EventMachine

I am trying to access an HTTPS web service that uses SSL cert authentication using Ruby EventMachine but I am not getting it to work. I have written the following simple code block to test it ...
2
votes
1answer
1k views

What is the best way to read files in an EventMachine-based app?

In order not to block the reactor I would like to read files asynchronously, but I've found no obvious way of doing it using EventMachine. I've tried a few different approaches, but none of them feels ...
2
votes
2answers
667 views

How to hand-over a TCP listening socket with minimal downtime?

While this question is tagged EventMachine, generic BSD-socket solutions in any language are much appreciated too. Some background: I have an application listening on a TCP socket. It is started ...
1
vote
1answer
34 views

Looking for a Ruby Web Socket library that falls back to long polling

I'm currently using em-websocket with Event Machine. It works great, but I also want to provide long polling and/or Flash fall-backs for browsers that don't support Web Sockets (and also so I can run ...
1
vote
1answer
33 views

Using EventMachine with Thin

I recently switched from mongrel to thin when upgrading to rails 3. Prior to the switch, we had been using EventMachine without any problem. After switching to thin,whenever EventMachine would be ...

1 2 3 4