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 ...
0
votes
0answers
8 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
23 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 ...
1
vote
0answers
77 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
73 views
+50
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
25 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
26 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
30 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
92 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
39 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
17 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
20 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
63 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
23 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
73 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
38 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 = ...
2
votes
0answers
74 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
33 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
50 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
42 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
60 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
37 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
145 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
30 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
47 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
118 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
40 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
37 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
80 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
56 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
35 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
40 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
70 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
51 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
34 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
12 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
43 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
42 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
323 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
23 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
25 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
vote
1answer
41 views
AMQP Multitasking
I have an interesting situation that I need to fulfill. I need to have an EventMachine loop that sits and waits for messages in an AMQP queue but then interrupts that loop in order to send out a ...
0
votes
1answer
105 views
Ruby: EventMachine and separate callback queues
EventMachine executes all operations in separate threads and all callbacks of this operations in one mainthread. It's very useful when you need reduce competitiveness in data processing between ...
1
vote
0answers
95 views
stub method of minitest is not being called inside an EM.next_tick block
does anyone have an idea why a block inside an EM.next_tick doesn't invoke the stub method but the original one? I'm using the em-minitest-spec (https://github.com/phiggins/em-minitest-spec). I need ...
1
vote
1answer
72 views
eventmachine on debian fails install via rubygems
this has been killing me for the last 5 hours. I don't seem to be able to get eventmachine running on my debian box.
here this output:
$ gem install thin
Building native extensions. This could take ...
0
votes
1answer
150 views
Error installing gem failed to build gem native extensions — cannot load such file — mkmf
RoR is nice, but sometimes makes me want to bang my head against the wall (and it's probably my fault anyway). I'm simply trying to install the Thin web-client gem, and when I run sudo gem install ...
2
votes
2answers
71 views
Need a mongo driver that supports replica sets and eventmachine for ruby
I am trying to find a ruby based mongo driver to use in my project. It has to support replicasets and eventmachine. I'm aware of em-mongo, but it does not support replicasets. It looks like there is ...
0
votes
0answers
39 views
How to set log level in ruby-amqp and how to return value from EM.next_tick?
This is my code
def send_rabbit
EventMachine.next_tick do
connection = AMQP.connect(:host => rabbitmq_host)
connection.on_tcp_connection_loss do |conn, settings|
return "error"
end
...
-1
votes
1answer
80 views
Pushing data into a browser from JRuby: highly reliable websockets package or what SHOULD I use? [closed]
If I need to push data into a modern browser from a RoR program running in JRuby, what are realistic options to do this? socket.io vs. sockjs vs. faye? What else? What is #eventmachine use? Where does ...
1
vote
0answers
55 views
Eventmachine system command
I am using Eventmachine
Need run a command system on the server and send the output of terminal to the client in real time.
Try with :
Server
EM.run{
EM.system('#command'){ |output|
...