Skip to content

abtris/vagrant-couchbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CouchBase cluster

Install vagrant

Download package for install: http://packages.couchbase.com/releases/2.0.1/couchbase-server-enterprise_x86_2.0.1.deb

wget http://packages.couchbase.com/releases/2.0.1/couchbase-server-enterprise_x86_2.0.1.deb

For ruby you need install library and gem:

Mac OS X:

brew install https://github.com/couchbase/homebrew/raw/stable/Library/Formula/libcouchbase.rb

and gem

gem install couchbase

Documentation: http://www.couchbase.com/develop/ruby/current

Code examples: https://github.com/couchbaselabs/DeveloperDay

Make hello world:

require 'rubygems'
require 'couchbase'

client = Couchbase.connect(:bucket => "beer-sample",
                           :hostname => "33.33.33.10")

beer = client.get("aass_brewery-juleol")
puts "#{beer['name']}, ABV: #{beer['abv']}"

beer['comment'] = "Random beer from Norway"
client.replace("aass_brewery-juleol", beer)

client.disconnect

Puppet

About

CouchBase virtual enviroment to test CouchBase Cluster

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published