Skip to content

alebsack/em-synchrony-moped

Repository files navigation

EM-Synchrony-Moped

Gem Version Dependency Status Build Status Coverage Status Code Climate

EM-Synchrony-Moped is a Moped driver patch for EM-Synchrony. Moped is the MongoDB driver for the Mongoid ORM.

Features

  • Supports SSL connections and server certificate checking
  • Uses an EventMachine-aware DNS lookup
  • Can be included in threaded applications
  • Unit tested against the threaded (original driver) behavior

Usage

In order to use this driver in an EM-Synchrony environment, simply include the driver.

require "em-synchrony/moped"

EventMachine.synchrony do
  node = Moped::Node.new("localhost:27017")
  puts node.primary?
  EM.stop
end

To use SSL, just pass an SSL config section to the options.

require "em-synchrony/moped"

EventMachine.synchrony do
  options = {
    :ssl => {
        :verify_peer => true,                      # false to skip peer verification
        :verify_cert => "../path-to/ca_cert.pem",  # specify a CA certificate to verify against
                                                   # or...
        :cert_store => OpenSSL::X509::Store.new,   # to specify a cached cert store.
        :verify_host => "localhost"                # Hostname to verify against, if you wish
                                                   # to verify the hostname in the certificate.
      }
  }
  node = Moped::Node.new("localhost:27017", options)
  puts node.primary?
  EM.stop
end

License

The MIT License - Copyright (c) 2013 Adam Lebsack

About

EM-Synchrony-Moped is a Moped driver patch for EM-Synchrony

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages