Skip to content

avsej/couchbase-ruby-client-em

Repository files navigation

EXAMPLE

Like any Deferrable eventmachine-based protocol implementation, using EM-Couchbase involves making calls and passing blocks that serve as callbacks when the call returns.

require 'em-couchbase'

EM.run do
  couchbase = EM::Protocols::Couchbase.connect
  couchbase.set "a", "foo" do |response|
    if response.success?
      couchbase.get "a" do |response|
        puts response.inspect
      end
    end
  end
  couchbase.incr "bar", :initial => 100500 do |response|
    if response.success?
      couchbase.get "bar" do |response|
        puts response.inspect
        EM.stop
      end
    end
  end
end

About

An EventMachine-based Couchbase ruby driver

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages