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 ...

learn more… | top users | synonyms

0
votes
2answers
14 views

EventMachine send data to one client (From Multi Server )

I have developed multiple eventmachine servers which are like require 'eventmachine' module EchoServer def post_init puts "-- someone connected to the echo server!" end def receive_data data ...
0
votes
0answers
8 views

Using EventMachine and other services alongside Pow

Recently an app I'm working on has begun to sprout new services. In production, I configure these services using Nginx locations. Here are the relevant bits from the production config: server { ...
0
votes
0answers
19 views

How to recover a crashed EventMachine loop

I'm using Unicorn on Heroku and I created an EventMachine loop: (from https://gist.github.com/jonkgrimes/5103321) after_fork do |server,worker| defined?(ActiveRecord::Base) and ...
2
votes
1answer
69 views

EventMachine : Failed to build gem native extension

I'm trying to install eventmachine: sudo gem install eventmachine ... Building native extensions. This could take a while... ...
0
votes
0answers
23 views

How to multiplex raw TCP Socket and Web Socket events under the same event loop of EventMachine in ruby?

That means I have one single Eventmachine, and some of the clients are Web socket clients who speak web socket protocol and some clients are Raw TCP sockets who don't talk in web socket protocol at ...
0
votes
1answer
58 views

Ruby - Send message to a Websocket

How can I send data to a WebSocket using Ruby in a Background Process? Background I already have a separate ruby file running a Websocket server using the websocket-eventmachine-server gem. However, ...
0
votes
1answer
47 views

How do I use ActiveRecord asynchronously with EventMachine?

I made a website using ruby on rails. Now, I need to write a chat/game in flash/action script, and I decided that the game server would be in ruby (mainly, because I have my AR models already, it's a ...
0
votes
0answers
29 views

What is the latest ruby way to create an event handler for listening to a serial port?

I'm using serialport gem to read incoming data. The ruby-serialport gem is too old. An event handling gem for serial port usage is em-serialport, but it's obsolete. I guess a good way would be to use ...
0
votes
1answer
22 views

Eventmachine calls callback twice

I tried to launch eventmachine httpserver example, but I've added simple puts in the process_http_request method. To my surprise, when I access localhost:8080 from browser, I see puts output in ...
1
vote
1answer
45 views

ActiveRecord objects not working in EventMachine callbacks

I ran into the following problem when testing my Rails app. When making an asynchronous HTTP request with EventMachine I cannot use ActiveRecord objects in the callback for some reason. Whenever I ...
0
votes
2answers
38 views

Does this block the event loop?

I have a sinatra app that is using thin as it's web server. I interact with my database via ActiveRecord. If in an endpoint, I do this: get '/test' do Model.create(.....) end Does the ...
7
votes
1answer
168 views

Why is rails not fully supporting writing evented code out out the box

After Node.js came out, it was the one thing that popularized evented programming. But, Ruby does have EventMachine which supports writing evented code. The requirements for supporting eventing in ...
2
votes
1answer
116 views

Ruby EventMachine testing

My first question concerning Ruby. I'm trying to test EventMachine interaction inside the Reactor loop - I guess it could be classified as "functional" testing. Say I have two classes - a server and ...
0
votes
2answers
57 views

Running EventMachine in new Thread after Rails is loaded using Thin

I have a Rails 3.2 app running on a Thin server and in application.rb I want to start EventMachine: # application.rb config.after_initialize do if ENV['EM'] EM.run do host = '0.0.0.0' ...
-1
votes
0answers
17 views

best way to detect whether another person has edited the content on a page

I'm interested in adding the functionality for detecting changes in the content of a webpage (similar to how stackoverflow does it for added answers). I'd imagine that this is a websocket sol'n. We'd ...
0
votes
1answer
34 views

Debugging Stuck Ruby Process - Workling\Starling

We have a rails app that about every 24 hours runs the load average on the machine well beyond 5. It looks like a stuck Ruby process specifically related to a background process running to manage ...
0
votes
1answer
36 views

Way to persist ruby objects that get their state changed via game ticks

Context I'm making a game in ruby. It has a model named Character with attributes like energy and money. A Character can have a behavior, e.g. sleeping. Finally the Character has a tick method that ...
3
votes
1answer
167 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 ...
0
votes
2answers
53 views

How to avoid the source being overwritten when compiling a Gem?

I am trying to install eventmachine Gem, however a line needs to be commented out in the source for this to work on Ruby 2.0 on Windows x64. I have tried modifying the Gem source in the Ruby build ...
0
votes
0answers
25 views

EventMachine & Live Reload

Is there a way to make EventMachine reload the code without losing connections? I thought about defining my ConnectionHandler in a separate file, then reloading it on SIGHUP: Signal.trap("HUP") do ...
0
votes
1answer
25 views

How to read and process a file in Ruby with EventMachine

I am wondering if anybody figured out a way to process bigger (500Mb+) text files with EventMachine, where you actually need to access the individual lines.
0
votes
1answer
89 views

How to use eventmachine, rails, and websockets?

i have the following sinatra code, how do i do the equivalent but for a rails app? specifically, want to start rails with thin inside the reactor loop, while also using a websocket server in there ...
-1
votes
2answers
28 views

Return eventmachine output to object in Ruby

In the below function (which is defined inside a class Myclass) I can run the function in ruby like myoutput = Myclass.get_par("http://eol.org/api/ping/1.0.json,http://eol.org/api/ping/1.0.json") ...
0
votes
0answers
93 views

Ruby 1.9.3 - websocket can't add a new key into hash during iteration (RuntimeError)

I am working on the websocket .. Now I am facing this issue When i try to open another client on the websocket . I have updated the code .. Please check again. Here is the line where I am getting ...
0
votes
2answers
42 views

eventmachine callback declaration order

In all eventmachine code that I've seen, the callbacks / errorbacks were declared after the actual call of the method. Here's a simple example: about = ...
3
votes
0answers
99 views

Deferrable vs callback interface

What are benefits of using Deferrable instead of callbacks. Small example. # This is Deferrable interface request = NetworkIO.get request.callback do |resp| puts "Job is done" end request.errback ...
1
vote
1answer
40 views

eventmachine memcache and heroku

I'm trying to use the eventmachine built in memcache client (with em-synchrony) in my goliath powered web app. It runs beautifully locally, but when I deploy to Heroku, I can't get it to connect. ...
0
votes
0answers
76 views

em-websocket with private channels

I need to create a web-socket server, I am planning to use em-websocket. I need to support private channels, that is I should be able to send message to one particular channel or subscriber. There ...
0
votes
0answers
62 views

How can em-synchrony run multiple synchronous callback chains?

We want to use an EventMachine reactor loop to run multiple HTTP requests in parallel. The EM loop will subscribe to a Redis channel which will publish notice of a new pending request. The loop ...
2
votes
0answers
68 views

Event machine connection time out handling?

What is the standard way of handling TCP connection timeout issues in EventMachine? The EventMachine::Connection.send_data method does not return a deferrable(Future) So there is no way to check ...
0
votes
0answers
45 views

Event machine em-websocket send call does not return future(deferrable)

I am using em-websocket gem to implement the Websocket server in Ruby. I have an issue with the EventMachine::WebSocket::Connection send method. The call to send method always return nil. So there is ...
2
votes
1answer
332 views

EventMachine - Port is in use

Getting a port is already in use error. require 'em-websocket' EM.run { EM::WebSocket.run(:host => "192.168.1.100", :port => 9001) do |ws| # Code goes here... end } Then on ...
0
votes
0answers
33 views

100% cpu after a few requests with rainbows and em-synchrony

I'm testing out an app I wrote using sinatra, sinatra-synchrony (layer above em-synchrony) and sequel (with the em-pg-sequel driver), and I'm finding that after 3 or 4 requests, ruby will max out cpu ...
0
votes
0answers
51 views

fibers in em-synchrony

I'm having trouble understanding wrapping Fibers around ActiveRecord query inside EM-Synchrony. require 'rubygems' require 'benchmark' require 'em-synchrony' require 'mysql2' require ...
1
vote
0answers
156 views

Can't install eventmachine, error building gem native extension

I'm trying to install helios but I'm getting an error when it tries to compile the native extensions for eventmachine. I'm on OS X 10.8.2, Ruby 2.0.0, Xcode 4.6.1 with updated Command Line Tools. ...
0
votes
1answer
50 views

rails method chaining context

I have what is probably a basic Q, but it appears complex in the setup. I have a module that has some classes. One class contains methods for API calls. Other classes describe a server. Dev for ...
0
votes
1answer
45 views

EventMachine.add_timer(0)

I came across a code that adds a timer with timeout 0: EventMachine.add_timer(0) { ... } does this make sense? how this can be useful? is this any different than using next_tick? ...
2
votes
1answer
104 views

EventMachine Web-socket Client TLS Connections

I am having difficulty in getting EventMachine Web-socket client to connect to a secure web-socket server wss:// using TLS. I have an EventMachine web-socket server setup and running fine. I can use ...
1
vote
0answers
70 views

Ruby Websocket endpoints, EventMachine, Goliath, etc

I am fairly new to using web sockets, but I have enjoyed what I have been doing so far. My app is currently setup with 3 endpoints based upon the path the connection is initially established with. ...
0
votes
0answers
38 views

ruby “Happening” streaming

I am using the "Happening" gem "https://github.com/peritor/happening" in order to stream uploads to S3. The code mentioned in the Happening readme : EM.run do item = Happening::S3::Item.new( ...
0
votes
0answers
46 views

How can I emulate stickiness with em-proxy?

I am working on a simple TCP proxy (using http for testing, but the goal is just care about TCP) and I am wondering if it is possible to achieve this with em-proxy. I would like to maintain a simple ...
0
votes
0answers
89 views

Rails: unable to load Eventmachine, gem is installed both in system and application

I haven't still found a suitable solution for this problem, similar questions are this and this Installation seemed to go fine [anadi@blramisr101575 engage]$ sudo gem install eventmachine --no-rdoc ...
2
votes
1answer
58 views

independent publisher/subscriber in different threads via rabbitmq in rails

I need to implement independent publisher/subscriber via rabbitmq in rails (plann to use amqp gem), but I need publisher work with one thread, subscriber works in another and they not depend from each ...
0
votes
0answers
36 views

This eventmachine code serves only one client and only once

I'm a complete newbie in this & I made a simple code that fetches data from RabbitMQ and sends it to client connected via websockets. Problem here is: if I start a app and a client connects ...
0
votes
0answers
14 views

Use sunspot solr with em-synchrony

Basically I would like to know if there is a way to use rsolr-async with sunspot-solr. Any pointers to achieve this would be much appreciated.
1
vote
1answer
47 views

rescuing errors in EventMachine::Deferrable

I am trying to figure out how to make the EventMachine::Deferrable callbacks not raise any exceptions. Instead of having begin ... rescue in every callback block, I am trying to wrap the block somehow ...
1
vote
0answers
45 views

Can someone explain this heroku behaviour?

This is the code of my config.ru: require 'rubygems' require 'bundler' Bundler.require require 'faye' $stdout.sync = true EM.synchrony do EM.error_handler do |e| puts e.message puts ...
0
votes
1answer
442 views

custom_require.rb load error in eventmachine installation

I'm having a problem with my gems dependencies: the content of the Gemfile is source :gemcutter gem "sinatra" gem "koala" gem "json", "1.5.5" gem "httparty" gem "thin" gem "rack", "1.3.10" And a ...
1
vote
1answer
35 views

em_postgresql On Heroku

I'm running a rails app on a thin server. I'm using an eventmachine based postgres driver which runs perfectly on my local machine. When I try and deploy on heroku, the em_postgres driver doesn't ...
0
votes
0answers
28 views

EM Synchrony Iterator managing ForEach/List

Is it possible to append to the ForEach List from within the iterator as its running? And in general, is it possible to manage this list from some other method? For example, if within the callback I ...

1 2 3 4 5 9