Socket
Book a DemoInstallSign in
Socket

julien51-em-mysql

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

julien51-em-mysql

0.3.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

Async MySQL driver for Ruby/EventMachine (c) 2008 Aman Gupta (tmm1)

Requires mysqlplus.

require 'em/mysql'

alias SQL for simpler syntax

SQL = EventedMysql def SQL(query, &blk) SQL.select(query, &blk) end

setup connection details and allow 4 connections to the server

SQL.settings.update :host => 'localhost', :port => 3306, :database => 'test', :connections => 4

use 4 connections to execute queries in parallel

SQL('select sleep(0.25)'){ p 'done' } SQL('select sleep(0.25)'){ p 'done' } SQL('select sleep(0.25)'){ p 'done' } SQL('select sleep(0.25)'){ p 'done' }

Also includes a sequel async wrapper

require 'sequel' require 'sequel/async'

DB = Sequel.connect(:adapter => 'mysql', :user => 'root', :database => 'test', ...) EventedMysql.settings.update(..., :on_error => proc{|e| log 'error', e })

DB[:table].where(:field => 'value').async_update(:field => 'new value')

For more info, see the comments in lib/sequel/async.rb

FAQs

Package last updated on 10 Oct 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.