Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6892725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:34:15+00:00 2026-05-27T06:34:15+00:00

There seem to be several options for establishing Redis connections for use within EventMachine,

  • 0

There seem to be several options for establishing Redis connections for use within EventMachine, and I’m having a hard time understanding the core differences between them.

My goal is to implement Redis within Goliath

The way I establish my connection now is through em-synchrony:

require 'em-synchrony'
require 'em-synchrony/em-redis'

config['redis'] = EventMachine::Synchrony::ConnectionPool.new(:size => 20) do 
  EventMachine::Protocols::Redis.connect(:host => 'localhost', :port => 6379)
end 

What is the difference between the above, and using something like em-hiredis?

If I’m using Redis for sets and basic key:value storage, is em-redis the best solution for my scenario?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:34:16+00:00Added an answer on May 27, 2026 at 6:34 am

    what em-synchrony does is patch the em-redis gem to allow using it with fibers which effectively allows it to run in goliath.

    Here is a project using Goliath + Redis which can guide you on how to make all this works: https://github.com/igrigorik/mneme

    Example with em-hiredis, what goliath do is wrap your request in a fiber so a way to test it is:

    require 'rubygems'
    require 'bundler/setup'
    
    require 'em-hiredis'
    require 'em-synchrony'
    
    EM::run do
      Fiber.new do
        ## this is what you can use in goliath
        redis = EM::Hiredis.connect
        p EM::Synchrony.sync redis.keys('*')
        ## end of goliath block
      end.resume
    
    end
    

    and the Gemfile I used:

    source :rubygems
    
    gem 'em-hiredis'
    gem 'em-synchrony'
    

    If you run this example you will get the list of defined keys in your redis database printed on screen.
    Without the EM::Synchrony.sync call you would get a deferrable but here the fiber is suspended until the calls return and you get the result.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are several properties on List<T> that seem to be related to number of
There seem to be many options to create an XML document in .NET. What's
There seem to be a limitation in the maximum number of clickable options in
There seem to be several ways to submit (POST) disabled form fields in jQuery:
There seem to be several ways to structure parent poms in a multiproject build
There seem to be many ways to define singletons in Python. Is there a
There seem to many ways to skin this particular cat - but which is
There seem to be two rival Eclipse plugins for integrating with Maven: m2Eclipse and
There seem to be a number of weird things one could do if one
There seem to be so many color wheel, color picker, and color matcher web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.